2009-08-17 12:41:51 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
sqlitedataset.h
|
|
|
|
|
2011-12-31 03:39:20 +01:00
|
|
|
(c) 2000-2012 Benoît Minisini <gambas@users.sourceforge.net>
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
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 2, 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, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
***************************************************************************/
|
2011-12-31 03:39:20 +01:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* Copyright (c) 2002, Leo Seib, Hannover
|
|
|
|
*
|
|
|
|
* Project:SQLiteDataset C++ Dynamic Library
|
|
|
|
* Module: SQLiteDataset class header file
|
|
|
|
* Author: Leo Seib E-Mail: lev@almaty.pointstrike.net
|
|
|
|
* Begin: 5/04/2002
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SQLITEDATASET_H
|
|
|
|
#define _SQLITEDATASET_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "dataset.h"
|
|
|
|
#include "sqlite.h"
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "gambas.h"
|
|
|
|
#include "gb_common.h"
|
|
|
|
#include "../gb.db.h"
|
|
|
|
|
|
|
|
extern GB_INTERFACE GB;
|
|
|
|
extern DB_INTERFACE DB;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* NG */
|
|
|
|
using namespace std;
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
typedef vector<string> Tables;
|
|
|
|
|
|
|
|
//#define DEFAULT_STRING_LENGTH 65535
|
|
|
|
#define DEFAULT_STRING_LENGTH 0
|
|
|
|
/* */
|
|
|
|
|
|
|
|
/* Return Field Type from Database */
|
2009-07-07 11:17:48 +02:00
|
|
|
void SetFieldType(result_set *r, Tables tables);
|
|
|
|
fType GetFieldType(const char *Type, unsigned int *len);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
/***************** Class SqliteDatabase definition ******************
|
|
|
|
|
|
|
|
class 'SqliteDatabase' connects with Sqlite-server
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
class SqliteDatabase: public Database {
|
|
|
|
protected:
|
|
|
|
/* connect descriptor */
|
|
|
|
sqlite *conn;
|
|
|
|
bool _in_transaction;
|
|
|
|
int last_err;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/* default constructor */
|
|
|
|
SqliteDatabase();
|
|
|
|
/* destructor */
|
|
|
|
virtual ~SqliteDatabase();
|
|
|
|
|
|
|
|
Dataset *CreateDataset() const;
|
|
|
|
|
|
|
|
/* func. returns connection handle with SQLite-server */
|
|
|
|
sqlite *getHandle() { return conn; }
|
|
|
|
/* func. returns current status about SQLite-server connection */
|
|
|
|
virtual int status();
|
|
|
|
virtual int setErr(int err_code);
|
|
|
|
/* func. returns error message if error occurs */
|
|
|
|
virtual const char *getErrorMsg();
|
|
|
|
|
|
|
|
/* func. connects to database-server */
|
|
|
|
virtual int connect();
|
|
|
|
/* func. disconnects from database-server */
|
|
|
|
virtual void disconnect();
|
|
|
|
/* func. creates new database */
|
|
|
|
virtual int create();
|
|
|
|
/* func. deletes database */
|
|
|
|
virtual int drop();
|
|
|
|
|
|
|
|
virtual long nextid(const char* seq_name);
|
|
|
|
|
|
|
|
/* virtual methods for transaction */
|
|
|
|
|
|
|
|
virtual void start_transaction();
|
|
|
|
virtual void commit_transaction();
|
|
|
|
virtual void rollback_transaction();
|
|
|
|
|
|
|
|
bool in_transaction() {return _in_transaction;}
|
|
|
|
|
|
|
|
int lastError() { return last_err; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************** Class SqliteDataset definition *******************
|
|
|
|
|
|
|
|
class 'SqliteDataset' does a query to SQLite-server
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
class SqliteDataset : public Dataset {
|
|
|
|
protected:
|
|
|
|
/* query results*/
|
|
|
|
result_set result;
|
|
|
|
result_set exec_res;
|
|
|
|
|
|
|
|
char* errmsg;
|
|
|
|
|
|
|
|
sqlite* handle();
|
|
|
|
|
|
|
|
/* Makes direct queries to database */
|
|
|
|
virtual void make_query(StringList &_sql);
|
|
|
|
/* Makes direct inserts into database */
|
|
|
|
virtual void make_insert();
|
|
|
|
/* Edit SQL */
|
|
|
|
virtual void make_edit();
|
|
|
|
/* Delete SQL */
|
|
|
|
virtual void make_deletion();
|
|
|
|
|
|
|
|
//static int sqlite_callback(void* res_ptr,int ncol, char** reslt, char** cols);
|
|
|
|
|
|
|
|
/* This function works only with MySQL database
|
|
|
|
Filling the fields information from select statement */
|
|
|
|
virtual void fill_fields();
|
|
|
|
/* Changing field values during dataset navigation */
|
|
|
|
|
|
|
|
public:
|
|
|
|
/* constructor */
|
|
|
|
SqliteDataset();
|
|
|
|
SqliteDataset(SqliteDatabase *newDb);
|
|
|
|
|
|
|
|
/* destructor */
|
|
|
|
virtual ~SqliteDataset();
|
|
|
|
|
|
|
|
/* opens a query & then sets a query results */
|
|
|
|
virtual void open();
|
|
|
|
virtual void open(const string &sql);
|
|
|
|
/* func. executes a query without results to return */
|
|
|
|
virtual int exec ();
|
|
|
|
virtual int exec (const string &sql);
|
|
|
|
virtual const void* getExecRes();
|
|
|
|
/* as open, but with our query exept Sql */
|
|
|
|
virtual bool query(const char *query);
|
|
|
|
virtual bool query(const string &query);
|
|
|
|
/* func. closes a query */
|
|
|
|
virtual void close(void);
|
|
|
|
/* Cancel changes, made in insert or edit states of dataset */
|
|
|
|
virtual void cancel();
|
|
|
|
/* sequence numbers */
|
|
|
|
virtual long nextid(const char *seq_name);
|
|
|
|
/* sequence numbers */
|
|
|
|
virtual int num_rows();
|
|
|
|
|
|
|
|
virtual bool bof();
|
|
|
|
virtual bool eof();
|
|
|
|
virtual void first();
|
|
|
|
virtual void last();
|
|
|
|
virtual void prev();
|
|
|
|
virtual void next();
|
|
|
|
/* Go to record No (starting with 0) */
|
|
|
|
virtual bool seek(int pos=0);
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|