00001 //# TaQL.h: The TaQL module - Casacore data querying 00002 //# Copyright (C) 1994-2010 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id: Tables.h 21434 2014-05-07 13:07:20Z gervandiepen $ 00027 00028 #ifndef TABLES_TAQL_H 00029 #define TABLES_TAQL_H 00030 00031 //# Includes 00032 //# table expressions (for selection of rows) 00033 #include <casacore/casa/aips.h> 00034 #include <casacore/tables/TaQL/ExprNode.h> 00035 #include <casacore/tables/TaQL/ExprNodeSet.h> 00036 #include <casacore/tables/TaQL/TableParse.h> 00037 00038 00039 namespace casacore { //# NAMESPACE CASACORE - BEGIN 00040 00041 // <module> 00042 00043 // <summary> 00044 // TaQL is the query language for Casacore tables 00045 // </summary> 00046 00047 // <use visibility=export> 00048 00049 // <reviewed reviewer="jhorstko" date="1994/08/30" tests="" demos=""> 00050 // </reviewed> 00051 00052 // <prerequisite> 00053 // <li> <linkto module="Tables:description">Tables</linkto> module 00054 // </prerequisite> 00055 00056 // <etymology> 00057 // "TaQL" is the Table Query Language. Its pronounciation rhymes with bagel. 00058 // </etymology> 00059 00060 // <synopsis> 00061 // TaQL is an SQL-like language to query a Casacore table. 00062 // Amongst its options are row select, sort, update, and delete. 00063 // <br>Some more information is given in the description of the 00064 // <linkto module="Tables:select and sort">Tables module</linkto>. 00065 // A detailed description is given in <A HREF="../notes/199.html">note 199</A>. 00066 // </synopsis> 00067 // </module> 00068 00069 00070 } //# NAMESPACE CASACORE - END 00071 00072 #endif