49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2012 - Juan Ferrer Toribio
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef SQL_H
|
|
#define SQL_H
|
|
|
|
#include <gvn/gvn.h>
|
|
#include "sql-object.h"
|
|
#include "sql-holder.h"
|
|
#include "sql-list.h"
|
|
#include "sql-batch.h"
|
|
#include "sql-set.h"
|
|
#include "sql-string.h"
|
|
#include "sql-stmt.h"
|
|
#include "sql-multi-stmt.h"
|
|
#include "sql-select.h"
|
|
#include "sql-select-field.h"
|
|
#include "sql-select-order.h"
|
|
#include "sql-update.h"
|
|
#include "sql-update-set.h"
|
|
#include "sql-insert.h"
|
|
#include "sql-delete.h"
|
|
#include "sql-expr.h"
|
|
#include "sql-field.h"
|
|
#include "sql-value.h"
|
|
#include "sql-operation.h"
|
|
#include "sql-function.h"
|
|
#include "sql-target.h"
|
|
#include "sql-table.h"
|
|
#include "sql-join.h"
|
|
#include "sql-subquery.h"
|
|
#include "sql-render.h"
|
|
#include "sql-parser.h"
|
|
|
|
#endif |