2000-05-29 18:26:00 +04:00
|
|
|
/*
|
2001-09-16 04:13:26 +04:00
|
|
|
** 2001 September 15
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** The author disclaims copyright to this source code. In place of
|
|
|
|
** a legal notice, here is a blessing:
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** May you do good and not evil.
|
|
|
|
** May you find forgiveness for yourself and forgive others.
|
|
|
|
** May you share freely, never taking more than you give.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
|
|
|
*************************************************************************
|
|
|
|
** Main file for the SQLite library. The routines in this file
|
|
|
|
** implement the programmer interface to the library. Routines in
|
|
|
|
** other files are for internal use by SQLite and should not be
|
|
|
|
** accessed by users of the library.
|
|
|
|
**
|
2002-07-13 21:23:21 +04:00
|
|
|
** $Id: main.c,v 1.86 2002/07/13 17:23:21 drh Exp $
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
#include "sqliteInt.h"
|
2001-09-19 17:22:39 +04:00
|
|
|
#include "os.h"
|
2002-05-15 18:17:44 +04:00
|
|
|
#include <ctype.h>
|
2000-05-29 18:26:00 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** This is the callback routine for the code that initializes the
|
2001-10-06 20:33:02 +04:00
|
|
|
** database. See sqliteInit() below for additional information.
|
|
|
|
**
|
|
|
|
** Each callback contains the following information:
|
2001-09-13 20:18:53 +04:00
|
|
|
**
|
2001-12-21 17:30:42 +03:00
|
|
|
** argv[0] = "file-format" or "schema-cookie" or "table" or "index"
|
2001-09-18 00:25:58 +04:00
|
|
|
** argv[1] = table or index name or meta statement type.
|
|
|
|
** argv[2] = root page number for table or index. NULL for meta.
|
2001-09-27 19:11:53 +04:00
|
|
|
** argv[3] = SQL create statement for the table or index
|
2002-06-25 05:09:11 +04:00
|
|
|
** argv[4] = "1" for temporary files, "0" for main database
|
2000-08-02 17:47:41 +04:00
|
|
|
**
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2002-06-16 22:21:44 +04:00
|
|
|
int sqliteInitCallback(void *pDb, int argc, char **argv, char **azColName){
|
2000-05-29 18:26:00 +04:00
|
|
|
sqlite *db = (sqlite*)pDb;
|
|
|
|
Parse sParse;
|
2001-09-13 20:18:53 +04:00
|
|
|
int nErr = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2001-10-06 20:33:02 +04:00
|
|
|
/* TODO: Do some validity checks on all fields. In particular,
|
|
|
|
** make sure fields do not contain NULLs. Otherwise we might core
|
|
|
|
** when attempting to initialize from a corrupt database file. */
|
2001-09-18 00:25:58 +04:00
|
|
|
|
2002-06-25 05:09:11 +04:00
|
|
|
assert( argc==5 );
|
2001-09-13 20:18:53 +04:00
|
|
|
switch( argv[0][0] ){
|
2002-02-21 15:01:27 +03:00
|
|
|
case 'v':
|
2001-09-13 20:18:53 +04:00
|
|
|
case 'i':
|
2002-02-21 15:01:27 +03:00
|
|
|
case 't': { /* CREATE TABLE, CREATE INDEX, or CREATE VIEW statements */
|
2001-09-27 19:11:53 +04:00
|
|
|
if( argv[3] && argv[3][0] ){
|
2002-02-21 15:01:27 +03:00
|
|
|
/* Call the parser to process a CREATE TABLE, INDEX or VIEW.
|
2001-10-06 20:33:02 +04:00
|
|
|
** But because sParse.initFlag is set to 1, no VDBE code is generated
|
|
|
|
** or executed. All the parser does is build the internal data
|
2002-02-21 15:01:27 +03:00
|
|
|
** structures that describe the table, index, or view.
|
2001-10-06 20:33:02 +04:00
|
|
|
*/
|
2001-09-27 19:11:53 +04:00
|
|
|
memset(&sParse, 0, sizeof(sParse));
|
|
|
|
sParse.db = db;
|
|
|
|
sParse.initFlag = 1;
|
2002-06-25 05:09:11 +04:00
|
|
|
sParse.isTemp = argv[4][0] - '0';
|
2001-09-27 19:11:53 +04:00
|
|
|
sParse.newTnum = atoi(argv[2]);
|
2001-11-23 03:24:12 +03:00
|
|
|
sqliteRunParser(&sParse, argv[3], 0);
|
2001-09-27 19:11:53 +04:00
|
|
|
}else{
|
2001-10-06 20:33:02 +04:00
|
|
|
/* If the SQL column is blank it means this is an index that
|
|
|
|
** was created to be the PRIMARY KEY or to fulfill a UNIQUE
|
2002-01-06 20:07:40 +03:00
|
|
|
** constraint for a CREATE TABLE. The index should have already
|
2001-10-06 20:33:02 +04:00
|
|
|
** been created when we processed the CREATE TABLE. All we have
|
2002-01-06 20:07:40 +03:00
|
|
|
** to do here is record the root page number for that index.
|
2001-10-06 20:33:02 +04:00
|
|
|
*/
|
2001-09-27 19:11:53 +04:00
|
|
|
Index *pIndex = sqliteFindIndex(db, argv[1]);
|
|
|
|
if( pIndex==0 || pIndex->tnum!=0 ){
|
2002-01-10 17:31:48 +03:00
|
|
|
/* This can occur if there exists an index on a TEMP table which
|
|
|
|
** has the same name as another index on a permanent index. Since
|
|
|
|
** the permanent table is hidden by the TEMP table, we can also
|
|
|
|
** safely ignore the index on the permanent table.
|
|
|
|
*/
|
|
|
|
/* Do Nothing */;
|
2001-09-27 19:11:53 +04:00
|
|
|
}else{
|
|
|
|
pIndex->tnum = atoi(argv[2]);
|
|
|
|
}
|
|
|
|
}
|
2001-09-13 20:18:53 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
/* This can not happen! */
|
|
|
|
nErr = 1;
|
|
|
|
assert( nErr==0 );
|
2000-08-02 17:47:41 +04:00
|
|
|
}
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
return nErr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-06-02 05:17:37 +04:00
|
|
|
** Attempt to read the database schema and initialize internal
|
|
|
|
** data structures. Return one of the SQLITE_ error codes to
|
|
|
|
** indicate success or failure.
|
2000-06-02 17:27:59 +04:00
|
|
|
**
|
|
|
|
** After the database is initialized, the SQLITE_Initialized
|
|
|
|
** bit is set in the flags field of the sqlite structure. An
|
|
|
|
** attempt is made to initialize the database as soon as it
|
|
|
|
** is opened. If that fails (perhaps because another process
|
|
|
|
** has the sqlite_master table locked) than another attempt
|
|
|
|
** is made the first time the database is accessed.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2002-06-25 05:09:11 +04:00
|
|
|
int sqliteInit(sqlite *db, char **pzErrMsg){
|
2000-06-02 05:17:37 +04:00
|
|
|
int rc;
|
2002-06-25 05:09:11 +04:00
|
|
|
BtCursor *curMain;
|
|
|
|
int size;
|
|
|
|
Table *pTab;
|
|
|
|
char *azArg[6];
|
|
|
|
int meta[SQLITE_N_BTREE_META];
|
|
|
|
Parse sParse;
|
2000-06-02 05:17:37 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** The master database table has a structure like this
|
|
|
|
*/
|
2000-05-29 18:26:00 +04:00
|
|
|
static char master_schema[] =
|
2002-06-25 05:09:11 +04:00
|
|
|
"CREATE TABLE sqlite_master(\n"
|
|
|
|
" type text,\n"
|
|
|
|
" name text,\n"
|
|
|
|
" tbl_name text,\n"
|
|
|
|
" rootpage integer,\n"
|
|
|
|
" sql text\n"
|
|
|
|
")"
|
|
|
|
;
|
|
|
|
static char temp_master_schema[] =
|
|
|
|
"CREATE TEMP TABLE sqlite_temp_master(\n"
|
2000-05-29 18:26:00 +04:00
|
|
|
" type text,\n"
|
|
|
|
" name text,\n"
|
|
|
|
" tbl_name text,\n"
|
2001-09-27 19:11:53 +04:00
|
|
|
" rootpage integer,\n"
|
2000-05-29 18:26:00 +04:00
|
|
|
" sql text\n"
|
|
|
|
")"
|
|
|
|
;
|
|
|
|
|
2002-06-25 05:09:11 +04:00
|
|
|
/* The following SQL will read the schema from the master tables.
|
|
|
|
** The first version works with SQLite file formats 2 or greater.
|
|
|
|
** The second version is for format 1 files.
|
2000-05-29 18:26:00 +04:00
|
|
|
**
|
2002-06-25 05:09:11 +04:00
|
|
|
** Beginning with file format 2, the rowid for new table entries
|
|
|
|
** (including entries in sqlite_master) is an increasing integer.
|
|
|
|
** So for file format 2 and later, we can play back sqlite_master
|
|
|
|
** and all the CREATE statements will appear in the right order.
|
|
|
|
** But with file format 1, table entries were random and so we
|
|
|
|
** have to make sure the CREATE TABLEs occur before their corresponding
|
|
|
|
** CREATE INDEXs. (We don't have to deal with CREATE VIEW or
|
|
|
|
** CREATE TRIGGER in file format 1 because those constructs did
|
|
|
|
** not exist then.)
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
2002-06-25 05:09:11 +04:00
|
|
|
static char init_script[] =
|
|
|
|
"SELECT type, name, rootpage, sql, 1 FROM sqlite_temp_master "
|
|
|
|
"UNION ALL "
|
|
|
|
"SELECT type, name, rootpage, sql, 0 FROM sqlite_master";
|
|
|
|
static char older_init_script[] =
|
|
|
|
"SELECT type, name, rootpage, sql, 1 FROM sqlite_temp_master "
|
|
|
|
"UNION ALL "
|
|
|
|
"SELECT type, name, rootpage, sql, 0 FROM sqlite_master "
|
|
|
|
"WHERE type='table' "
|
|
|
|
"UNION ALL "
|
|
|
|
"SELECT type, name, rootpage, sql, 0 FROM sqlite_master "
|
|
|
|
"WHERE type='index'";
|
|
|
|
|
|
|
|
|
|
|
|
/* Construct the schema tables: sqlite_master and sqlite_temp_master
|
|
|
|
*/
|
|
|
|
azArg[0] = "table";
|
|
|
|
azArg[1] = MASTER_NAME;
|
|
|
|
azArg[2] = "2";
|
|
|
|
azArg[3] = master_schema;
|
|
|
|
azArg[4] = "0";
|
|
|
|
azArg[5] = 0;
|
|
|
|
sqliteInitCallback(db, 5, azArg, 0);
|
|
|
|
pTab = sqliteFindTable(db, MASTER_NAME);
|
|
|
|
if( pTab ){
|
|
|
|
pTab->readOnly = 1;
|
|
|
|
}
|
|
|
|
azArg[1] = TEMP_MASTER_NAME;
|
|
|
|
azArg[3] = temp_master_schema;
|
|
|
|
azArg[4] = "1";
|
|
|
|
sqliteInitCallback(db, 5, azArg, 0);
|
|
|
|
pTab = sqliteFindTable(db, TEMP_MASTER_NAME);
|
|
|
|
if( pTab ){
|
|
|
|
pTab->readOnly = 1;
|
|
|
|
}
|
2002-02-21 15:01:27 +03:00
|
|
|
|
2002-06-25 05:09:11 +04:00
|
|
|
/* Create a cursor to hold the database open
|
|
|
|
*/
|
|
|
|
if( db->pBe==0 ) return SQLITE_OK;
|
|
|
|
rc = sqliteBtreeCursor(db->pBe, 2, 0, &curMain);
|
|
|
|
if( rc ) return rc;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
2002-06-25 05:09:11 +04:00
|
|
|
/* Get the database meta information
|
2000-06-02 05:17:37 +04:00
|
|
|
*/
|
2002-06-25 05:09:11 +04:00
|
|
|
rc = sqliteBtreeGetMeta(db->pBe, meta);
|
|
|
|
if( rc ){
|
|
|
|
sqliteBtreeCloseCursor(curMain);
|
|
|
|
return rc;
|
2000-06-08 03:51:50 +04:00
|
|
|
}
|
2002-06-25 05:09:11 +04:00
|
|
|
db->schema_cookie = meta[1];
|
|
|
|
db->next_cookie = db->schema_cookie;
|
|
|
|
db->file_format = meta[2];
|
|
|
|
size = meta[3];
|
|
|
|
if( size==0 ){ size = MAX_PAGES; }
|
|
|
|
db->cache_size = size;
|
|
|
|
sqliteBtreeSetCacheSize(db->pBe, size);
|
|
|
|
|
|
|
|
/*
|
|
|
|
** file_format==1 Version 2.1.0.
|
|
|
|
** file_format==2 Version 2.2.0. Add support for INTEGER PRIMARY KEY.
|
|
|
|
** file_format==3 Version 2.6.0. Add support for separate numeric and
|
|
|
|
** text datatypes.
|
|
|
|
*/
|
|
|
|
if( db->file_format==0 ){
|
2002-02-21 15:01:27 +03:00
|
|
|
db->file_format = 2;
|
2002-06-25 05:09:11 +04:00
|
|
|
}else if( db->file_format>2 ){
|
|
|
|
sqliteBtreeCloseCursor(curMain);
|
2001-09-13 20:18:53 +04:00
|
|
|
sqliteSetString(pzErrMsg, "unsupported file format", 0);
|
2000-08-02 17:47:41 +04:00
|
|
|
rc = SQLITE_ERROR;
|
|
|
|
}
|
2002-01-06 20:07:40 +03:00
|
|
|
|
2002-06-25 05:09:11 +04:00
|
|
|
/* Read the schema information out of the schema tables
|
2002-01-06 20:07:40 +03:00
|
|
|
*/
|
2002-06-25 05:09:11 +04:00
|
|
|
memset(&sParse, 0, sizeof(sParse));
|
|
|
|
sParse.db = db;
|
|
|
|
sParse.pBe = db->pBe;
|
|
|
|
sParse.xCallback = sqliteInitCallback;
|
|
|
|
sParse.pArg = (void*)db;
|
|
|
|
sParse.initFlag = 1;
|
|
|
|
sqliteRunParser(&sParse,
|
|
|
|
db->file_format>=2 ? init_script : older_init_script,
|
|
|
|
pzErrMsg);
|
|
|
|
if( sqlite_malloc_failed ){
|
|
|
|
sqliteSetString(pzErrMsg, "out of memory", 0);
|
|
|
|
sParse.rc = SQLITE_NOMEM;
|
|
|
|
sqliteBtreeRollback(db->pBe);
|
|
|
|
sqliteResetInternalSchema(db);
|
|
|
|
}
|
|
|
|
if( sParse.rc==SQLITE_OK ){
|
2000-06-02 05:17:37 +04:00
|
|
|
db->flags |= SQLITE_Initialized;
|
2001-09-13 17:46:56 +04:00
|
|
|
sqliteCommitInternalChanges(db);
|
2002-06-25 05:09:11 +04:00
|
|
|
}else{
|
|
|
|
db->flags &= ~SQLITE_Initialized;
|
|
|
|
sqliteResetInternalSchema(db);
|
2000-06-02 05:17:37 +04:00
|
|
|
}
|
2002-06-25 05:09:11 +04:00
|
|
|
sqliteBtreeCloseCursor(curMain);
|
|
|
|
return sParse.rc;
|
2000-06-02 05:17:37 +04:00
|
|
|
}
|
|
|
|
|
2000-08-22 17:40:18 +04:00
|
|
|
/*
|
|
|
|
** The version of the library
|
|
|
|
*/
|
2000-08-22 17:40:51 +04:00
|
|
|
const char sqlite_version[] = SQLITE_VERSION;
|
2000-08-22 17:40:18 +04:00
|
|
|
|
2001-04-05 19:57:13 +04:00
|
|
|
/*
|
|
|
|
** Does the library expect data to be encoded as UTF-8 or iso8859? The
|
|
|
|
** following global constant always lets us know.
|
|
|
|
*/
|
|
|
|
#ifdef SQLITE_UTF8
|
2001-04-06 20:13:42 +04:00
|
|
|
const char sqlite_encoding[] = "UTF-8";
|
2001-04-05 19:57:13 +04:00
|
|
|
#else
|
2001-04-06 20:13:42 +04:00
|
|
|
const char sqlite_encoding[] = "iso8859";
|
2001-04-05 19:57:13 +04:00
|
|
|
#endif
|
|
|
|
|
2000-06-02 05:17:37 +04:00
|
|
|
/*
|
|
|
|
** Open a new SQLite database. Construct an "sqlite" structure to define
|
|
|
|
** the state of this database and return a pointer to that structure.
|
|
|
|
**
|
|
|
|
** An attempt is made to initialize the in-memory data structures that
|
|
|
|
** hold the database schema. But if this fails (because the schema file
|
|
|
|
** is locked) then that step is deferred until the first call to
|
|
|
|
** sqlite_exec().
|
|
|
|
*/
|
|
|
|
sqlite *sqlite_open(const char *zFilename, int mode, char **pzErrMsg){
|
|
|
|
sqlite *db;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* Allocate the sqlite data structure */
|
2000-05-29 18:26:00 +04:00
|
|
|
db = sqliteMalloc( sizeof(sqlite) );
|
|
|
|
if( pzErrMsg ) *pzErrMsg = 0;
|
2001-04-11 18:28:42 +04:00
|
|
|
if( db==0 ) goto no_mem_on_open;
|
2001-09-22 22:12:08 +04:00
|
|
|
sqliteHashInit(&db->tblHash, SQLITE_HASH_STRING, 0);
|
|
|
|
sqliteHashInit(&db->idxHash, SQLITE_HASH_STRING, 0);
|
2002-05-15 12:30:12 +04:00
|
|
|
sqliteHashInit(&db->trigHash, SQLITE_HASH_STRING, 0);
|
2002-02-28 03:41:10 +03:00
|
|
|
sqliteHashInit(&db->aFunc, SQLITE_HASH_STRING, 1);
|
2002-06-09 14:14:18 +04:00
|
|
|
sqliteRegisterBuiltinFunctions(db);
|
2002-01-31 18:54:21 +03:00
|
|
|
db->onError = OE_Default;
|
2002-02-20 01:42:05 +03:00
|
|
|
db->priorNewRowid = 0;
|
2002-05-10 09:44:55 +04:00
|
|
|
db->magic = SQLITE_MAGIC_BUSY;
|
2000-05-29 18:26:00 +04:00
|
|
|
|
|
|
|
/* Open the backend database driver */
|
2001-09-14 20:42:12 +04:00
|
|
|
rc = sqliteBtreeOpen(zFilename, mode, MAX_PAGES, &db->pBe);
|
2001-09-13 17:46:56 +04:00
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
switch( rc ){
|
|
|
|
default: {
|
2002-01-06 20:07:40 +03:00
|
|
|
sqliteSetString(pzErrMsg, "unable to open database: ", zFilename, 0);
|
2001-09-13 17:46:56 +04:00
|
|
|
}
|
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
sqliteFree(db);
|
2001-09-14 01:53:09 +04:00
|
|
|
sqliteStrRealloc(pzErrMsg);
|
2001-09-13 18:46:09 +04:00
|
|
|
return 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
2000-06-02 05:17:37 +04:00
|
|
|
/* Attempt to read the schema */
|
|
|
|
rc = sqliteInit(db, pzErrMsg);
|
2002-06-15 00:54:14 +04:00
|
|
|
db->magic = SQLITE_MAGIC_OPEN;
|
2001-04-11 18:28:42 +04:00
|
|
|
if( sqlite_malloc_failed ){
|
2001-10-22 06:58:08 +04:00
|
|
|
sqlite_close(db);
|
2001-04-11 18:28:42 +04:00
|
|
|
goto no_mem_on_open;
|
|
|
|
}else if( rc!=SQLITE_OK && rc!=SQLITE_BUSY ){
|
2000-06-02 05:17:37 +04:00
|
|
|
sqlite_close(db);
|
2001-09-14 01:53:09 +04:00
|
|
|
sqliteStrRealloc(pzErrMsg);
|
2000-06-02 05:17:37 +04:00
|
|
|
return 0;
|
2002-01-06 20:07:40 +03:00
|
|
|
}else if( pzErrMsg ){
|
2001-04-11 18:28:42 +04:00
|
|
|
sqliteFree(*pzErrMsg);
|
2000-06-02 17:27:59 +04:00
|
|
|
*pzErrMsg = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
return db;
|
2001-04-11 18:28:42 +04:00
|
|
|
|
|
|
|
no_mem_on_open:
|
|
|
|
sqliteSetString(pzErrMsg, "out of memory", 0);
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
|
|
|
return 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
2002-01-17 00:00:27 +03:00
|
|
|
/*
|
|
|
|
** Return the ROWID of the most recent insert
|
|
|
|
*/
|
|
|
|
int sqlite_last_insert_rowid(sqlite *db){
|
|
|
|
return db->lastRowid;
|
|
|
|
}
|
|
|
|
|
2002-04-12 14:08:59 +04:00
|
|
|
/*
|
|
|
|
** Return the number of changes in the most recent call to sqlite_exec().
|
|
|
|
*/
|
|
|
|
int sqlite_changes(sqlite *db){
|
|
|
|
return db->nChange;
|
|
|
|
}
|
|
|
|
|
2001-09-15 04:57:28 +04:00
|
|
|
/*
|
|
|
|
** Close an existing SQLite database
|
|
|
|
*/
|
|
|
|
void sqlite_close(sqlite *db){
|
2002-02-24 02:45:45 +03:00
|
|
|
HashElem *i;
|
2002-05-10 17:14:07 +04:00
|
|
|
if( sqliteSafetyCheck(db) || sqliteSafetyOn(db) ){ return; }
|
2002-05-10 09:44:55 +04:00
|
|
|
db->magic = SQLITE_MAGIC_CLOSED;
|
2001-09-15 04:57:28 +04:00
|
|
|
sqliteBtreeClose(db->pBe);
|
2002-06-25 05:09:11 +04:00
|
|
|
sqliteResetInternalSchema(db);
|
2001-10-08 17:22:32 +04:00
|
|
|
if( db->pBeTemp ){
|
|
|
|
sqliteBtreeClose(db->pBeTemp);
|
|
|
|
}
|
2002-02-28 03:41:10 +03:00
|
|
|
for(i=sqliteHashFirst(&db->aFunc); i; i=sqliteHashNext(i)){
|
|
|
|
FuncDef *pFunc, *pNext;
|
|
|
|
for(pFunc = (FuncDef*)sqliteHashData(i); pFunc; pFunc=pNext){
|
2002-02-24 02:45:45 +03:00
|
|
|
pNext = pFunc->pNext;
|
|
|
|
sqliteFree(pFunc);
|
|
|
|
}
|
|
|
|
}
|
2002-02-28 03:41:10 +03:00
|
|
|
sqliteHashClear(&db->aFunc);
|
2000-05-29 18:26:00 +04:00
|
|
|
sqliteFree(db);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return TRUE if the given SQL string ends in a semicolon.
|
2002-05-15 18:17:44 +04:00
|
|
|
**
|
|
|
|
** Special handling is require for CREATE TRIGGER statements.
|
|
|
|
** Whenever the CREATE TRIGGER keywords are seen, the statement
|
|
|
|
** must end with ";END;".
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
int sqlite_complete(const char *zSql){
|
2002-05-15 18:17:44 +04:00
|
|
|
int isComplete = 1;
|
|
|
|
int requireEnd = 0;
|
|
|
|
int seenText = 0;
|
2002-05-15 12:30:12 +04:00
|
|
|
int seenCreate = 0;
|
2000-12-10 21:23:50 +03:00
|
|
|
while( *zSql ){
|
|
|
|
switch( *zSql ){
|
|
|
|
case ';': {
|
|
|
|
isComplete = 1;
|
2002-05-15 18:17:44 +04:00
|
|
|
seenText = 1;
|
|
|
|
seenCreate = 0;
|
2000-12-10 21:23:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
case '\n':
|
|
|
|
case '\f': {
|
|
|
|
break;
|
|
|
|
}
|
2002-02-18 21:30:32 +03:00
|
|
|
case '[': {
|
|
|
|
isComplete = 0;
|
2002-05-15 18:17:44 +04:00
|
|
|
seenText = 1;
|
|
|
|
seenCreate = 0;
|
2002-02-18 21:30:32 +03:00
|
|
|
zSql++;
|
|
|
|
while( *zSql && *zSql!=']' ){ zSql++; }
|
|
|
|
if( *zSql==0 ) return 0;
|
|
|
|
break;
|
|
|
|
}
|
2002-05-15 18:17:44 +04:00
|
|
|
case '"':
|
2000-12-10 21:23:50 +03:00
|
|
|
case '\'': {
|
2002-05-15 18:17:44 +04:00
|
|
|
int c = *zSql;
|
2000-12-10 21:23:50 +03:00
|
|
|
isComplete = 0;
|
2002-05-15 18:17:44 +04:00
|
|
|
seenText = 1;
|
|
|
|
seenCreate = 0;
|
2000-12-10 21:23:50 +03:00
|
|
|
zSql++;
|
2002-05-15 18:17:44 +04:00
|
|
|
while( *zSql && *zSql!=c ){ zSql++; }
|
2000-12-10 21:23:50 +03:00
|
|
|
if( *zSql==0 ) return 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
2000-12-10 21:23:50 +03:00
|
|
|
}
|
|
|
|
case '-': {
|
|
|
|
if( zSql[1]!='-' ){
|
|
|
|
isComplete = 0;
|
2002-05-15 18:17:44 +04:00
|
|
|
seenCreate = 0;
|
2000-12-10 21:23:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
while( *zSql && *zSql!='\n' ){ zSql++; }
|
2002-05-15 18:17:44 +04:00
|
|
|
if( *zSql==0 ) return seenText && isComplete && requireEnd==0;
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
2002-05-15 15:44:13 +04:00
|
|
|
}
|
2002-05-15 18:17:44 +04:00
|
|
|
case 'c':
|
|
|
|
case 'C': {
|
|
|
|
seenText = 1;
|
|
|
|
if( !isComplete ) break;
|
|
|
|
isComplete = 0;
|
|
|
|
if( sqliteStrNICmp(zSql, "create", 6)!=0 ) break;
|
|
|
|
if( !isspace(zSql[6]) ) break;
|
|
|
|
zSql += 5;
|
|
|
|
seenCreate = 1;
|
|
|
|
while( isspace(zSql[1]) ) zSql++;
|
|
|
|
if( sqliteStrNICmp(&zSql[1],"trigger", 7)!=0 ) break;
|
|
|
|
zSql += 7;
|
|
|
|
requireEnd++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 't':
|
|
|
|
case 'T': {
|
|
|
|
seenText = 1;
|
|
|
|
if( !seenCreate ) break;
|
|
|
|
seenCreate = 0;
|
|
|
|
isComplete = 0;
|
|
|
|
if( sqliteStrNICmp(zSql, "trigger", 7)!=0 ) break;
|
|
|
|
if( !isspace(zSql[7]) ) break;
|
|
|
|
zSql += 6;
|
|
|
|
requireEnd++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'e':
|
|
|
|
case 'E': {
|
|
|
|
seenCreate = 0;
|
|
|
|
seenText = 1;
|
|
|
|
if( !isComplete ) break;
|
|
|
|
isComplete = 0;
|
|
|
|
if( requireEnd==0 ) break;
|
|
|
|
if( sqliteStrNICmp(zSql, "end", 3)!=0 ) break;
|
|
|
|
zSql += 2;
|
|
|
|
while( isspace(zSql[1]) ) zSql++;
|
|
|
|
if( zSql[1]==';' ){
|
|
|
|
zSql++;
|
|
|
|
isComplete = 1;
|
|
|
|
requireEnd--;
|
2002-05-15 15:44:13 +04:00
|
|
|
}
|
2002-05-15 18:17:44 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
seenCreate = 0;
|
|
|
|
seenText = 1;
|
2000-12-10 21:23:50 +03:00
|
|
|
isComplete = 0;
|
2000-05-29 18:26:00 +04:00
|
|
|
break;
|
2000-12-10 21:23:50 +03:00
|
|
|
}
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
2000-12-10 21:23:50 +03:00
|
|
|
zSql++;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
2002-05-15 18:17:44 +04:00
|
|
|
return seenText && isComplete && requireEnd==0;
|
2000-05-29 18:26:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-06-02 17:27:59 +04:00
|
|
|
** Execute SQL code. Return one of the SQLITE_ success/failure
|
|
|
|
** codes. Also write an error message into memory obtained from
|
|
|
|
** malloc() and make *pzErrMsg point to that message.
|
|
|
|
**
|
|
|
|
** If the SQL is a query, then for each row in the query result
|
|
|
|
** the xCallback() function is called. pArg becomes the first
|
|
|
|
** argument to xCallback(). If xCallback=NULL then no callback
|
|
|
|
** is invoked, even for queries.
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
int sqlite_exec(
|
|
|
|
sqlite *db, /* The database on which the SQL executes */
|
2001-11-04 02:57:09 +03:00
|
|
|
const char *zSql, /* The SQL to be executed */
|
2000-05-29 18:26:00 +04:00
|
|
|
sqlite_callback xCallback, /* Invoke this callback routine */
|
|
|
|
void *pArg, /* First argument to xCallback() */
|
|
|
|
char **pzErrMsg /* Write error messages here */
|
|
|
|
){
|
|
|
|
Parse sParse;
|
|
|
|
|
|
|
|
if( pzErrMsg ) *pzErrMsg = 0;
|
2002-05-10 17:14:07 +04:00
|
|
|
if( sqliteSafetyOn(db) ) goto exec_misuse;
|
2002-07-13 21:23:21 +04:00
|
|
|
if( (db->flags & SQLITE_InTrans)!=0 && db->pid!=sqliteOsProcessId() ){
|
|
|
|
goto exec_misuse;
|
|
|
|
}
|
2000-06-02 05:17:37 +04:00
|
|
|
if( (db->flags & SQLITE_Initialized)==0 ){
|
|
|
|
int rc = sqliteInit(db, pzErrMsg);
|
2001-04-11 18:28:42 +04:00
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
2002-05-10 09:44:55 +04:00
|
|
|
sqliteSafetyOff(db);
|
2001-04-11 18:28:42 +04:00
|
|
|
return rc;
|
|
|
|
}
|
2000-06-02 05:17:37 +04:00
|
|
|
}
|
2002-04-12 14:08:59 +04:00
|
|
|
if( db->recursionDepth==0 ){ db->nChange = 0; }
|
|
|
|
db->recursionDepth++;
|
2000-05-29 18:26:00 +04:00
|
|
|
memset(&sParse, 0, sizeof(sParse));
|
|
|
|
sParse.db = db;
|
2001-09-13 17:46:56 +04:00
|
|
|
sParse.pBe = db->pBe;
|
2000-05-29 18:26:00 +04:00
|
|
|
sParse.xCallback = xCallback;
|
|
|
|
sParse.pArg = pArg;
|
2000-10-17 02:06:40 +04:00
|
|
|
sqliteRunParser(&sParse, zSql, pzErrMsg);
|
2001-04-11 18:28:42 +04:00
|
|
|
if( sqlite_malloc_failed ){
|
|
|
|
sqliteSetString(pzErrMsg, "out of memory", 0);
|
|
|
|
sParse.rc = SQLITE_NOMEM;
|
2001-10-22 06:58:08 +04:00
|
|
|
sqliteBtreeRollback(db->pBe);
|
|
|
|
if( db->pBeTemp ) sqliteBtreeRollback(db->pBeTemp);
|
|
|
|
db->flags &= ~SQLITE_InTrans;
|
2002-06-25 05:09:11 +04:00
|
|
|
sqliteResetInternalSchema(db);
|
2001-04-11 18:28:42 +04:00
|
|
|
}
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
2001-09-15 04:57:28 +04:00
|
|
|
if( sParse.rc==SQLITE_SCHEMA ){
|
2002-06-25 05:09:11 +04:00
|
|
|
sqliteResetInternalSchema(db);
|
2001-09-15 04:57:28 +04:00
|
|
|
}
|
2002-04-12 14:08:59 +04:00
|
|
|
db->recursionDepth--;
|
2002-05-10 17:14:07 +04:00
|
|
|
if( sqliteSafetyOff(db) ) goto exec_misuse;
|
2000-10-17 02:06:40 +04:00
|
|
|
return sParse.rc;
|
2000-07-28 18:32:48 +04:00
|
|
|
|
2002-05-10 17:14:07 +04:00
|
|
|
exec_misuse:
|
|
|
|
if( pzErrMsg ){
|
|
|
|
*pzErrMsg = 0;
|
|
|
|
sqliteSetString(pzErrMsg, sqlite_error_string(SQLITE_MISUSE), 0);
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
2002-05-10 09:44:55 +04:00
|
|
|
}
|
2002-05-10 17:14:07 +04:00
|
|
|
return SQLITE_MISUSE;
|
2002-05-10 09:44:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2002-05-10 17:14:07 +04:00
|
|
|
** Return a static string that describes the kind of error specified in the
|
|
|
|
** argument.
|
2002-05-10 09:44:55 +04:00
|
|
|
*/
|
2002-05-10 17:14:07 +04:00
|
|
|
const char *sqlite_error_string(int rc){
|
|
|
|
const char *z;
|
|
|
|
switch( rc ){
|
|
|
|
case SQLITE_OK: z = "not an error"; break;
|
|
|
|
case SQLITE_ERROR: z = "SQL logic error or missing database"; break;
|
|
|
|
case SQLITE_INTERNAL: z = "internal SQLite implementation flaw"; break;
|
|
|
|
case SQLITE_PERM: z = "access permission denied"; break;
|
|
|
|
case SQLITE_ABORT: z = "callback requested query abort"; break;
|
|
|
|
case SQLITE_BUSY: z = "database is locked"; break;
|
|
|
|
case SQLITE_LOCKED: z = "database table is locked"; break;
|
|
|
|
case SQLITE_NOMEM: z = "out of memory"; break;
|
|
|
|
case SQLITE_READONLY: z = "attempt to write a readonly database"; break;
|
|
|
|
case SQLITE_INTERRUPT: z = "interrupted"; break;
|
|
|
|
case SQLITE_IOERR: z = "disk I/O error"; break;
|
|
|
|
case SQLITE_CORRUPT: z = "database disk image is malformed"; break;
|
|
|
|
case SQLITE_NOTFOUND: z = "table or record not found"; break;
|
|
|
|
case SQLITE_FULL: z = "database is full"; break;
|
|
|
|
case SQLITE_CANTOPEN: z = "unable to open database file"; break;
|
|
|
|
case SQLITE_PROTOCOL: z = "database locking protocol failure"; break;
|
|
|
|
case SQLITE_EMPTY: z = "table contains no data"; break;
|
|
|
|
case SQLITE_SCHEMA: z = "database schema has changed"; break;
|
|
|
|
case SQLITE_TOOBIG: z = "too much data for one table row"; break;
|
|
|
|
case SQLITE_CONSTRAINT: z = "constraint failed"; break;
|
|
|
|
case SQLITE_MISMATCH: z = "datatype mismatch"; break;
|
|
|
|
case SQLITE_MISUSE: z = "library routine called out of sequence";break;
|
|
|
|
default: z = "unknown error"; break;
|
2002-05-10 09:44:55 +04:00
|
|
|
}
|
2002-05-10 17:14:07 +04:00
|
|
|
return z;
|
2002-05-10 09:44:55 +04:00
|
|
|
}
|
|
|
|
|
2000-07-28 18:32:48 +04:00
|
|
|
/*
|
|
|
|
** This routine implements a busy callback that sleeps and tries
|
|
|
|
** again until a timeout value is reached. The timeout value is
|
|
|
|
** an integer number of milliseconds passed in as the first
|
|
|
|
** argument.
|
|
|
|
*/
|
2001-04-11 18:28:42 +04:00
|
|
|
static int sqliteDefaultBusyCallback(
|
2000-07-28 18:32:48 +04:00
|
|
|
void *Timeout, /* Maximum amount of time to wait */
|
|
|
|
const char *NotUsed, /* The name of the table that is busy */
|
|
|
|
int count /* Number of times table has been busy */
|
|
|
|
){
|
2001-09-19 17:22:39 +04:00
|
|
|
#if SQLITE_MIN_SLEEP_MS==1
|
|
|
|
int delay = 10;
|
2000-07-28 18:32:48 +04:00
|
|
|
int prior_delay = 0;
|
|
|
|
int timeout = (int)Timeout;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=1; i<count; i++){
|
|
|
|
prior_delay += delay;
|
|
|
|
delay = delay*2;
|
2001-09-19 17:22:39 +04:00
|
|
|
if( delay>=1000 ){
|
|
|
|
delay = 1000;
|
|
|
|
prior_delay += 1000*(count - i - 1);
|
2000-07-28 18:32:48 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-10-09 17:46:01 +04:00
|
|
|
if( prior_delay + delay > timeout ){
|
|
|
|
delay = timeout - prior_delay;
|
2000-07-28 18:32:48 +04:00
|
|
|
if( delay<=0 ) return 0;
|
|
|
|
}
|
2001-09-19 17:22:39 +04:00
|
|
|
sqliteOsSleep(delay);
|
2000-07-28 18:32:48 +04:00
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
int timeout = (int)Timeout;
|
|
|
|
if( (count+1)*1000 > timeout ){
|
|
|
|
return 0;
|
|
|
|
}
|
2001-09-19 17:22:39 +04:00
|
|
|
sqliteOsSleep(1000);
|
2000-07-28 18:32:48 +04:00
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine sets the busy callback for an Sqlite database to the
|
|
|
|
** given callback function with the given argument.
|
|
|
|
*/
|
|
|
|
void sqlite_busy_handler(
|
|
|
|
sqlite *db,
|
|
|
|
int (*xBusy)(void*,const char*,int),
|
|
|
|
void *pArg
|
|
|
|
){
|
|
|
|
db->xBusyCallback = xBusy;
|
|
|
|
db->pBusyArg = pArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine installs a default busy handler that waits for the
|
|
|
|
** specified number of milliseconds before returning 0.
|
|
|
|
*/
|
|
|
|
void sqlite_busy_timeout(sqlite *db, int ms){
|
|
|
|
if( ms>0 ){
|
2001-04-11 18:28:42 +04:00
|
|
|
sqlite_busy_handler(db, sqliteDefaultBusyCallback, (void*)ms);
|
2000-07-28 18:32:48 +04:00
|
|
|
}else{
|
|
|
|
sqlite_busy_handler(db, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2000-10-17 02:06:40 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Cause any pending operation to stop at its earliest opportunity.
|
|
|
|
*/
|
|
|
|
void sqlite_interrupt(sqlite *db){
|
|
|
|
db->flags |= SQLITE_Interrupt;
|
|
|
|
}
|
2002-02-02 18:01:15 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Windows systems should call this routine to free memory that
|
|
|
|
** is returned in the in the errmsg parameter of sqlite_open() when
|
|
|
|
** SQLite is a DLL. For some reason, it does not work to call free()
|
|
|
|
** directly.
|
|
|
|
**
|
|
|
|
** Note that we need to call free() not sqliteFree() here, since every
|
|
|
|
** string that is exported from SQLite should have already passed through
|
|
|
|
** sqliteStrRealloc().
|
|
|
|
*/
|
|
|
|
void sqlite_freemem(void *p){ free(p); }
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Windows systems need functions to call to return the sqlite_version
|
|
|
|
** and sqlite_encoding strings.
|
|
|
|
*/
|
|
|
|
const char *sqlite_libversion(void){ return sqlite_version; }
|
|
|
|
const char *sqlite_libencoding(void){ return sqlite_encoding; }
|
2002-02-24 02:45:45 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Create new user-defined functions. The sqlite_create_function()
|
|
|
|
** routine creates a regular function and sqlite_create_aggregate()
|
|
|
|
** creates an aggregate function.
|
|
|
|
**
|
|
|
|
** Passing a NULL xFunc argument or NULL xStep and xFinalize arguments
|
|
|
|
** disables the function. Calling sqlite_create_function() with the
|
|
|
|
** same name and number of arguments as a prior call to
|
|
|
|
** sqlite_create_aggregate() disables the prior call to
|
|
|
|
** sqlite_create_aggregate(), and vice versa.
|
|
|
|
**
|
|
|
|
** If nArg is -1 it means that this function will accept any number
|
|
|
|
** of arguments, including 0.
|
|
|
|
*/
|
|
|
|
int sqlite_create_function(
|
|
|
|
sqlite *db, /* Add the function to this database connection */
|
|
|
|
const char *zName, /* Name of the function to add */
|
|
|
|
int nArg, /* Number of arguments */
|
2002-02-27 22:00:20 +03:00
|
|
|
void (*xFunc)(sqlite_func*,int,const char**), /* The implementation */
|
|
|
|
void *pUserData /* User data */
|
2002-02-24 02:45:45 +03:00
|
|
|
){
|
2002-02-28 03:41:10 +03:00
|
|
|
FuncDef *p;
|
2002-05-10 17:14:07 +04:00
|
|
|
if( db==0 || zName==0 || sqliteSafetyCheck(db) ) return 1;
|
2002-02-28 03:41:10 +03:00
|
|
|
p = sqliteFindFunction(db, zName, strlen(zName), nArg, 1);
|
2002-02-27 04:53:13 +03:00
|
|
|
if( p==0 ) return 1;
|
2002-02-24 02:45:45 +03:00
|
|
|
p->xFunc = xFunc;
|
|
|
|
p->xStep = 0;
|
|
|
|
p->xFinalize = 0;
|
2002-02-27 22:00:20 +03:00
|
|
|
p->pUserData = pUserData;
|
2002-02-24 02:45:45 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int sqlite_create_aggregate(
|
|
|
|
sqlite *db, /* Add the function to this database connection */
|
|
|
|
const char *zName, /* Name of the function to add */
|
|
|
|
int nArg, /* Number of arguments */
|
2002-02-27 22:00:20 +03:00
|
|
|
void (*xStep)(sqlite_func*,int,const char**), /* The step function */
|
|
|
|
void (*xFinalize)(sqlite_func*), /* The finalizer */
|
|
|
|
void *pUserData /* User data */
|
2002-02-24 02:45:45 +03:00
|
|
|
){
|
2002-02-28 03:41:10 +03:00
|
|
|
FuncDef *p;
|
2002-05-10 17:14:07 +04:00
|
|
|
if( db==0 || zName==0 || sqliteSafetyCheck(db) ) return 1;
|
2002-02-28 03:41:10 +03:00
|
|
|
p = sqliteFindFunction(db, zName, strlen(zName), nArg, 1);
|
2002-02-27 04:53:13 +03:00
|
|
|
if( p==0 ) return 1;
|
2002-02-24 02:45:45 +03:00
|
|
|
p->xFunc = 0;
|
|
|
|
p->xStep = xStep;
|
|
|
|
p->xFinalize = xFinalize;
|
2002-02-27 22:00:20 +03:00
|
|
|
p->pUserData = pUserData;
|
2002-02-24 02:45:45 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2002-06-20 15:36:48 +04:00
|
|
|
|
|
|
|
/*
|
2002-06-25 23:31:18 +04:00
|
|
|
** Change the datatype for all functions with a given name. See the
|
|
|
|
** header comment for the prototype of this function in sqlite.h for
|
|
|
|
** additional information.
|
2002-06-20 15:36:48 +04:00
|
|
|
*/
|
|
|
|
int sqlite_function_type(sqlite *db, const char *zName, int dataType){
|
|
|
|
FuncDef *p = (FuncDef*)sqliteHashFind(&db->aFunc, zName, strlen(zName));
|
|
|
|
while( p ){
|
|
|
|
p->dataType = dataType;
|
|
|
|
p = p->pNext;
|
|
|
|
}
|
2002-06-22 06:33:38 +04:00
|
|
|
return SQLITE_OK;
|
2002-06-20 15:36:48 +04:00
|
|
|
}
|
2002-06-25 23:31:18 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Attempt to open the file named in the argument as the auxiliary database
|
|
|
|
** file. The auxiliary database file is used to store TEMP tables. But
|
|
|
|
** by using this API, it is possible to trick SQLite into opening two
|
|
|
|
** separate databases and acting on them as if they were one.
|
|
|
|
**
|
|
|
|
** This routine closes the existing auxiliary database file, which will
|
|
|
|
** cause any previously created TEMP tables to be created.
|
|
|
|
**
|
|
|
|
** The zName parameter can be a NULL pointer or an empty string to cause
|
|
|
|
** a temporary file to be opened and automatically deleted when closed.
|
|
|
|
*/
|
|
|
|
int sqlite_open_aux_file(sqlite *db, const char *zName, char **pzErrMsg){
|
|
|
|
int rc;
|
|
|
|
if( zName && zName[0]==0 ) zName = 0;
|
|
|
|
if( sqliteSafetyOn(db) ) goto openaux_misuse;
|
|
|
|
sqliteResetInternalSchema(db);
|
|
|
|
if( db->pBeTemp!=0 ){
|
|
|
|
sqliteBtreeClose(db->pBeTemp);
|
|
|
|
}
|
|
|
|
rc = sqliteBtreeOpen(zName, 0, MAX_PAGES, &db->pBeTemp);
|
|
|
|
if( rc ){
|
|
|
|
if( zName==0 ) zName = "a temporary file";
|
|
|
|
sqliteSetString(pzErrMsg, "unable to open ", zName,
|
|
|
|
": ", sqlite_error_string(rc), 0);
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
|
|
|
sqliteSafetyOff(db);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
rc = sqliteInit(db, pzErrMsg);
|
|
|
|
if( sqliteSafetyOff(db) ) goto openaux_misuse;
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
openaux_misuse:
|
|
|
|
sqliteSetString(pzErrMsg, sqlite_error_string(SQLITE_MISUSE), 0);
|
|
|
|
sqliteStrRealloc(pzErrMsg);
|
|
|
|
return SQLITE_MISUSE;
|
|
|
|
}
|