Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** Main file for the SQLite library. The routines in this file
13 ** implement the programmer interface to the library. Routines in
14 ** other files are for internal use by SQLite and should not be
15 ** accessed by users of the library.
17 ** $Id: main.c,v 1.508 2008/10/12 00:27:53 shane Exp $
19 #include "sqliteInt.h"
22 #ifdef SQLITE_ENABLE_FTS3
25 #ifdef SQLITE_ENABLE_RTREE
28 #ifdef SQLITE_ENABLE_ICU
29 # include "sqliteicu.h"
33 ** The version of the library
35 const char sqlite3_version[] = SQLITE_VERSION;
36 const char *sqlite3_libversion(void){ return sqlite3_version; }
37 int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; }
38 int sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; }
40 #if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE)
42 ** If the following function pointer is not NULL and if
43 ** SQLITE_ENABLE_IOTRACE is enabled, then messages describing
44 ** I/O active are written using this function. These messages
45 ** are intended for debugging activity only.
47 void (*sqlite3IoTrace)(const char*, ...) = 0;
51 ** If the following global variable points to a string which is the
52 ** name of a directory, then that directory will be used to store
55 ** See also the "PRAGMA temp_store_directory" SQL command.
57 char *sqlite3_temp_directory = 0;
62 ** This routine must be called to initialize the memory allocation,
63 ** VFS, and mutex subsystems prior to doing any serious work with
64 ** SQLite. But as long as you do not compile with SQLITE_OMIT_AUTOINIT
65 ** this routine will be called automatically by key routines such as
68 ** This routine is a no-op except on its very first call for the process,
69 ** or for the first call after a call to sqlite3_shutdown.
71 ** The first thread to call this routine runs the initialization to
72 ** completion. If subsequent threads call this routine before the first
73 ** thread has finished the initialization process, then the subsequent
74 ** threads must block until the first thread finishes with the initialization.
76 ** The first thread might call this routine recursively. Recursive
77 ** calls to this routine should not block, of course. Otherwise the
78 ** initialization process would never complete.
80 ** Let X be the first thread to enter this routine. Let Y be some other
81 ** thread. Then while the initial invocation of this routine by X is
82 ** incomplete, it is required that:
84 ** * Calls to this routine from Y must block until the outer-most
85 ** call by X completes.
87 ** * Recursive calls to this routine from thread X return immediately
90 int sqlite3_initialize(void){
91 sqlite3_mutex *pMaster; /* The main static mutex */
92 int rc; /* Result code */
94 #ifdef SQLITE_OMIT_WSD
95 rc = sqlite3_wsd_init(4096, 24);
101 /* If SQLite is already completely initialized, then this call
102 ** to sqlite3_initialize() should be a no-op. But the initialization
103 ** must be complete. So isInit must not be set until the very end
106 if( sqlite3GlobalConfig.isInit ) return SQLITE_OK;
108 /* Make sure the mutex subsystem is initialized. If unable to
109 ** initialize the mutex subsystem, return early with the error.
110 ** If the system is so sick that we are unable to allocate a mutex,
111 ** there is not much SQLite is going to be able to do.
113 ** The mutex subsystem must take care of serializing its own
116 rc = sqlite3MutexInit();
119 /* Initialize the malloc() system and the recursive pInitMutex mutex.
120 ** This operation is protected by the STATIC_MASTER mutex. Note that
121 ** MutexAlloc() is called for a static mutex prior to initializing the
122 ** malloc subsystem - this implies that the allocation of a static
123 ** mutex must not require support from the malloc subsystem.
125 pMaster = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
126 sqlite3_mutex_enter(pMaster);
127 if( !sqlite3GlobalConfig.isMallocInit ){
128 rc = sqlite3MallocInit();
131 sqlite3GlobalConfig.isMallocInit = 1;
132 if( !sqlite3GlobalConfig.pInitMutex ){
133 sqlite3GlobalConfig.pInitMutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
134 if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){
140 sqlite3GlobalConfig.nRefInitMutex++;
142 sqlite3_mutex_leave(pMaster);
144 /* If unable to initialize the malloc subsystem, then return early.
145 ** There is little hope of getting SQLite to run if the malloc
146 ** subsystem cannot be initialized.
152 /* Do the rest of the initialization under the recursive mutex so
153 ** that we will be able to handle recursive calls into
154 ** sqlite3_initialize(). The recursive calls normally come through
155 ** sqlite3_os_init() when it invokes sqlite3_vfs_register(), but other
156 ** recursive calls might also be possible.
158 sqlite3_mutex_enter(sqlite3GlobalConfig.pInitMutex);
159 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){
160 FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions);
161 sqlite3GlobalConfig.inProgress = 1;
162 memset(pHash, 0, sizeof(sqlite3GlobalFunctions));
163 sqlite3RegisterGlobalFunctions();
164 rc = sqlite3_os_init();
166 rc = sqlite3PcacheInitialize();
167 sqlite3PCacheBufferSetup( sqlite3GlobalConfig.pPage,
168 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage);
170 sqlite3GlobalConfig.inProgress = 0;
171 sqlite3GlobalConfig.isInit = (rc==SQLITE_OK ? 1 : 0);
173 sqlite3_mutex_leave(sqlite3GlobalConfig.pInitMutex);
175 /* Go back under the static mutex and clean up the recursive
176 ** mutex to prevent a resource leak.
178 sqlite3_mutex_enter(pMaster);
179 sqlite3GlobalConfig.nRefInitMutex--;
180 if( sqlite3GlobalConfig.nRefInitMutex<=0 ){
181 assert( sqlite3GlobalConfig.nRefInitMutex==0 );
182 sqlite3_mutex_free(sqlite3GlobalConfig.pInitMutex);
183 sqlite3GlobalConfig.pInitMutex = 0;
185 sqlite3_mutex_leave(pMaster);
187 /* The following is just a sanity check to make sure SQLite has
188 ** been compiled correctly. It is important to run this code, but
189 ** we don't want to run it too often and soak up CPU cycles for no
190 ** reason. So we run it once during initialization.
193 /* This section of code's only "output" is via assert() statements. */
194 if ( rc==SQLITE_OK ){
195 u64 x = (((u64)1)<<63)-1;
197 assert(sizeof(x)==8);
198 assert(sizeof(x)==sizeof(y));
200 assert( sqlite3IsNaN(y) );
208 ** Undo the effects of sqlite3_initialize(). Must not be called while
209 ** there are outstanding database connections or memory allocations or
210 ** while any part of SQLite is otherwise in use in any thread. This
211 ** routine is not threadsafe. Not by a long shot.
213 int sqlite3_shutdown(void){
214 sqlite3GlobalConfig.isMallocInit = 0;
215 sqlite3PcacheShutdown();
216 if( sqlite3GlobalConfig.isInit ){
221 sqlite3GlobalConfig.isInit = 0;
226 ** This API allows applications to modify the global configuration of
227 ** the SQLite library at run-time.
229 ** This routine should only be called when there are no outstanding
230 ** database connections or memory allocations. This routine is not
231 ** threadsafe. Failure to heed these warnings can lead to unpredictable
234 int sqlite3_config(int op, ...){
238 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
239 ** the SQLite library is in use. */
240 if( sqlite3GlobalConfig.isInit ) return SQLITE_MISUSE;
245 /* Mutex configuration options are only available in a threadsafe
248 #if SQLITE_THREADSAFE
249 case SQLITE_CONFIG_SINGLETHREAD: {
250 /* Disable all mutexing */
251 sqlite3GlobalConfig.bCoreMutex = 0;
252 sqlite3GlobalConfig.bFullMutex = 0;
255 case SQLITE_CONFIG_MULTITHREAD: {
256 /* Disable mutexing of database connections */
257 /* Enable mutexing of core data structures */
258 sqlite3GlobalConfig.bCoreMutex = 1;
259 sqlite3GlobalConfig.bFullMutex = 0;
262 case SQLITE_CONFIG_SERIALIZED: {
263 /* Enable all mutexing */
264 sqlite3GlobalConfig.bCoreMutex = 1;
265 sqlite3GlobalConfig.bFullMutex = 1;
268 case SQLITE_CONFIG_MUTEX: {
269 /* Specify an alternative mutex implementation */
270 sqlite3GlobalConfig.mutex = *va_arg(ap, sqlite3_mutex_methods*);
273 case SQLITE_CONFIG_GETMUTEX: {
274 /* Retrieve the current mutex implementation */
275 *va_arg(ap, sqlite3_mutex_methods*) = sqlite3GlobalConfig.mutex;
281 case SQLITE_CONFIG_MALLOC: {
282 /* Specify an alternative malloc implementation */
283 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
286 case SQLITE_CONFIG_GETMALLOC: {
287 /* Retrieve the current malloc() implementation */
288 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();
289 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;
292 case SQLITE_CONFIG_MEMSTATUS: {
293 /* Enable or disable the malloc status collection */
294 sqlite3GlobalConfig.bMemstat = va_arg(ap, int);
297 case SQLITE_CONFIG_SCRATCH: {
298 /* Designate a buffer for scratch memory space */
299 sqlite3GlobalConfig.pScratch = va_arg(ap, void*);
300 sqlite3GlobalConfig.szScratch = va_arg(ap, int);
301 sqlite3GlobalConfig.nScratch = va_arg(ap, int);
304 case SQLITE_CONFIG_PAGECACHE: {
305 /* Designate a buffer for scratch memory space */
306 sqlite3GlobalConfig.pPage = va_arg(ap, void*);
307 sqlite3GlobalConfig.szPage = va_arg(ap, int);
308 sqlite3GlobalConfig.nPage = va_arg(ap, int);
312 #if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5)
313 case SQLITE_CONFIG_HEAP: {
314 /* Designate a buffer for heap memory space */
315 sqlite3GlobalConfig.pHeap = va_arg(ap, void*);
316 sqlite3GlobalConfig.nHeap = va_arg(ap, int);
317 sqlite3GlobalConfig.mnReq = va_arg(ap, int);
319 if( sqlite3GlobalConfig.pHeap==0 ){
320 /* If the heap pointer is NULL, then restore the malloc implementation
321 ** back to NULL pointers too. This will cause the malloc to go
322 ** back to its default implementation when sqlite3_initialize() is
325 memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m));
327 /* The heap pointer is not NULL, then install one of the
328 ** mem5.c/mem3.c methods. If neither ENABLE_MEMSYS3 nor
329 ** ENABLE_MEMSYS5 is defined, return an error.
330 ** the default case and return an error.
332 #ifdef SQLITE_ENABLE_MEMSYS3
333 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys3();
335 #ifdef SQLITE_ENABLE_MEMSYS5
336 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys5();
343 #if defined(SQLITE_ENABLE_MEMSYS6)
344 case SQLITE_CONFIG_CHUNKALLOC: {
345 sqlite3GlobalConfig.nSmall = va_arg(ap, int);
346 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys6();
351 case SQLITE_CONFIG_LOOKASIDE: {
352 sqlite3GlobalConfig.szLookaside = va_arg(ap, int);
353 sqlite3GlobalConfig.nLookaside = va_arg(ap, int);
367 ** Set up the lookaside buffers for a database connection.
368 ** Return SQLITE_OK on success.
369 ** If lookaside is already active, return SQLITE_BUSY.
371 ** The sz parameter is the number of bytes in each lookaside slot.
372 ** The cnt parameter is the number of slots. If pStart is NULL the
373 ** space for the lookaside memory is obtained from sqlite3_malloc().
374 ** If pStart is not NULL then it is sz*cnt bytes of memory to use for
375 ** the lookaside memory.
377 static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){
379 if( db->lookaside.nOut ){
386 sqlite3BeginBenignMalloc();
387 pStart = sqlite3Malloc( sz*cnt );
388 sqlite3EndBenignMalloc();
393 if( db->lookaside.bMalloced ){
394 sqlite3_free(db->lookaside.pStart);
396 db->lookaside.pStart = pStart;
397 db->lookaside.pFree = 0;
398 db->lookaside.sz = sz;
399 db->lookaside.bMalloced = pBuf==0;
403 p = (LookasideSlot*)pStart;
404 for(i=cnt-1; i>=0; i--){
405 p->pNext = db->lookaside.pFree;
406 db->lookaside.pFree = p;
407 p = (LookasideSlot*)&((u8*)p)[sz];
409 db->lookaside.pEnd = p;
410 db->lookaside.bEnabled = 1;
412 db->lookaside.pEnd = 0;
413 db->lookaside.bEnabled = 0;
419 ** Configuration settings for an individual database connection
421 int sqlite3_db_config(sqlite3 *db, int op, ...){
426 case SQLITE_DBCONFIG_LOOKASIDE: {
427 void *pBuf = va_arg(ap, void*);
428 int sz = va_arg(ap, int);
429 int cnt = va_arg(ap, int);
430 rc = setupLookaside(db, pBuf, sz, cnt);
443 ** Routine needed to support the testcase() macro.
445 #ifdef SQLITE_COVERAGE_TEST
446 void sqlite3Coverage(int x){
447 static int dummy = 0;
454 ** Return true if the buffer z[0..n-1] contains all spaces.
456 static int allSpaces(const char *z, int n){
457 while( n>0 && z[n-1]==' ' ){ n--; }
462 ** This is the default collating function named "BINARY" which is always
465 ** If the padFlag argument is not NULL then space padding at the end
466 ** of strings is ignored. This implements the RTRIM collation.
468 static int binCollFunc(
470 int nKey1, const void *pKey1,
471 int nKey2, const void *pKey2
474 n = nKey1<nKey2 ? nKey1 : nKey2;
475 rc = memcmp(pKey1, pKey2, n);
478 && allSpaces(((char*)pKey1)+n, nKey1-n)
479 && allSpaces(((char*)pKey2)+n, nKey2-n)
481 /* Leave rc unchanged at 0 */
490 ** Another built-in collating sequence: NOCASE.
492 ** This collating sequence is intended to be used for "case independant
493 ** comparison". SQLite's knowledge of upper and lower case equivalents
494 ** extends only to the 26 characters used in the English language.
496 ** At the moment there is only a UTF-8 implementation.
498 static int nocaseCollatingFunc(
500 int nKey1, const void *pKey1,
501 int nKey2, const void *pKey2
503 int r = sqlite3StrNICmp(
504 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
512 ** Return the ROWID of the most recent insert
514 sqlite_int64 sqlite3_last_insert_rowid(sqlite3 *db){
515 return db->lastRowid;
519 ** Return the number of changes in the most recent call to sqlite3_exec().
521 int sqlite3_changes(sqlite3 *db){
526 ** Return the number of changes since the database handle was opened.
528 int sqlite3_total_changes(sqlite3 *db){
529 return db->nTotalChange;
533 ** Close an existing SQLite database
535 int sqlite3_close(sqlite3 *db){
542 if( !sqlite3SafetyCheckSickOrOk(db) ){
543 return SQLITE_MISUSE;
545 sqlite3_mutex_enter(db->mutex);
549 extern void sqlite3SseCleanup(sqlite3*);
550 sqlite3SseCleanup(db);
554 sqlite3ResetInternalSchema(db, 0);
556 /* If a transaction is open, the ResetInternalSchema() call above
557 ** will not have called the xDisconnect() method on any virtual
558 ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback()
559 ** call will do so. We need to do this before the check for active
560 ** SQL statements below, as the v-table implementation may be storing
561 ** some prepared statements internally.
563 sqlite3VtabRollback(db);
565 /* If there are any outstanding VMs, return SQLITE_BUSY. */
567 sqlite3Error(db, SQLITE_BUSY,
568 "Unable to close due to unfinalised statements");
569 sqlite3_mutex_leave(db->mutex);
572 assert( sqlite3SafetyCheckSickOrOk(db) );
574 for(j=0; j<db->nDb; j++){
575 struct Db *pDb = &db->aDb[j];
577 sqlite3BtreeClose(pDb->pBt);
584 sqlite3ResetInternalSchema(db, 0);
585 assert( db->nDb<=2 );
586 assert( db->aDb==db->aDbStatic );
587 for(j=0; j<ArraySize(db->aFunc.a); j++){
588 FuncDef *pNext, *pHash, *p;
589 for(p=db->aFunc.a[j]; p; p=pHash){
593 sqlite3DbFree(db, p);
598 for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){
599 CollSeq *pColl = (CollSeq *)sqliteHashData(i);
600 /* Invoke any destructors registered for collation sequence user data. */
603 pColl[j].xDel(pColl[j].pUser);
606 sqlite3DbFree(db, pColl);
608 sqlite3HashClear(&db->aCollSeq);
609 #ifndef SQLITE_OMIT_VIRTUALTABLE
610 for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){
611 Module *pMod = (Module *)sqliteHashData(i);
612 if( pMod->xDestroy ){
613 pMod->xDestroy(pMod->pAux);
615 sqlite3DbFree(db, pMod);
617 sqlite3HashClear(&db->aModule);
620 sqlite3Error(db, SQLITE_OK, 0); /* Deallocates any cached error strings. */
622 sqlite3ValueFree(db->pErr);
624 sqlite3CloseExtensions(db);
626 db->magic = SQLITE_MAGIC_ERROR;
628 /* The temp-database schema is allocated differently from the other schema
629 ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()).
630 ** So it needs to be freed here. Todo: Why not roll the temp schema into
631 ** the same sqliteMalloc() as the one that allocates the database
634 sqlite3DbFree(db, db->aDb[1].pSchema);
635 sqlite3_mutex_leave(db->mutex);
636 db->magic = SQLITE_MAGIC_CLOSED;
637 sqlite3_mutex_free(db->mutex);
638 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
639 if( db->lookaside.bMalloced ){
640 sqlite3_free(db->lookaside.pStart);
647 ** Rollback all database files.
649 void sqlite3RollbackAll(sqlite3 *db){
652 assert( sqlite3_mutex_held(db->mutex) );
653 sqlite3BeginBenignMalloc();
654 for(i=0; i<db->nDb; i++){
655 if( db->aDb[i].pBt ){
656 if( sqlite3BtreeIsInTrans(db->aDb[i].pBt) ){
659 sqlite3BtreeRollback(db->aDb[i].pBt);
660 db->aDb[i].inTrans = 0;
663 sqlite3VtabRollback(db);
664 sqlite3EndBenignMalloc();
666 if( db->flags&SQLITE_InternChanges ){
667 sqlite3ExpirePreparedStatements(db);
668 sqlite3ResetInternalSchema(db, 0);
671 /* If one has been configured, invoke the rollback-hook callback */
672 if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){
673 db->xRollbackCallback(db->pRollbackArg);
678 ** Return a static string that describes the kind of error specified in the
681 const char *sqlite3ErrStr(int rc){
686 case SQLITE_OK: z = "not an error"; break;
687 case SQLITE_ERROR: z = "SQL logic error or missing database"; break;
688 case SQLITE_PERM: z = "access permission denied"; break;
689 case SQLITE_ABORT: z = "callback requested query abort"; break;
690 case SQLITE_BUSY: z = "database is locked"; break;
691 case SQLITE_LOCKED: z = "database table is locked"; break;
692 case SQLITE_NOMEM: z = "out of memory"; break;
693 case SQLITE_READONLY: z = "attempt to write a readonly database"; break;
694 case SQLITE_INTERRUPT: z = "interrupted"; break;
695 case SQLITE_IOERR: z = "disk I/O error"; break;
696 case SQLITE_CORRUPT: z = "database disk image is malformed"; break;
697 case SQLITE_FULL: z = "database or disk is full"; break;
698 case SQLITE_CANTOPEN: z = "unable to open database file"; break;
699 case SQLITE_EMPTY: z = "table contains no data"; break;
700 case SQLITE_SCHEMA: z = "database schema has changed"; break;
701 case SQLITE_TOOBIG: z = "String or BLOB exceeded size limit"; break;
702 case SQLITE_CONSTRAINT: z = "constraint failed"; break;
703 case SQLITE_MISMATCH: z = "datatype mismatch"; break;
704 case SQLITE_MISUSE: z = "library routine called out of sequence";break;
705 case SQLITE_NOLFS: z = "large file support is disabled"; break;
706 case SQLITE_AUTH: z = "authorization denied"; break;
707 case SQLITE_FORMAT: z = "auxiliary database format error"; break;
708 case SQLITE_RANGE: z = "bind or column index out of range"; break;
709 case SQLITE_NOTADB: z = "file is encrypted or is not a database";break;
710 default: z = "unknown error"; break;
716 ** This routine implements a busy callback that sleeps and tries
717 ** again until a timeout value is reached. The timeout value is
718 ** an integer number of milliseconds passed in as the first
721 static int sqliteDefaultBusyCallback(
722 void *ptr, /* Database connection */
723 int count /* Number of times table has been busy */
725 #if SQLITE_OS_WIN || (defined(HAVE_USLEEP) && HAVE_USLEEP)
726 static const u8 delays[] =
727 { 1, 2, 5, 10, 15, 20, 25, 25, 25, 50, 50, 100 };
728 static const u8 totals[] =
729 { 0, 1, 3, 8, 18, 33, 53, 78, 103, 128, 178, 228 };
730 # define NDELAY (sizeof(delays)/sizeof(delays[0]))
731 sqlite3 *db = (sqlite3 *)ptr;
732 int timeout = db->busyTimeout;
736 if( count < NDELAY ){
737 delay = delays[count];
738 prior = totals[count];
740 delay = delays[NDELAY-1];
741 prior = totals[NDELAY-1] + delay*(count-(NDELAY-1));
743 if( prior + delay > timeout ){
744 delay = timeout - prior;
745 if( delay<=0 ) return 0;
747 sqlite3OsSleep(db->pVfs, delay*1000);
750 sqlite3 *db = (sqlite3 *)ptr;
751 int timeout = ((sqlite3 *)ptr)->busyTimeout;
752 if( (count+1)*1000 > timeout ){
755 sqlite3OsSleep(db->pVfs, 1000000);
761 ** Invoke the given busy handler.
763 ** This routine is called when an operation failed with a lock.
764 ** If this routine returns non-zero, the lock is retried. If it
765 ** returns 0, the operation aborts with an SQLITE_BUSY error.
767 int sqlite3InvokeBusyHandler(BusyHandler *p){
769 if( NEVER(p==0) || p->xFunc==0 || p->nBusy<0 ) return 0;
770 rc = p->xFunc(p->pArg, p->nBusy);
780 ** This routine sets the busy callback for an Sqlite database to the
781 ** given callback function with the given argument.
783 int sqlite3_busy_handler(
785 int (*xBusy)(void*,int),
788 sqlite3_mutex_enter(db->mutex);
789 db->busyHandler.xFunc = xBusy;
790 db->busyHandler.pArg = pArg;
791 db->busyHandler.nBusy = 0;
792 sqlite3_mutex_leave(db->mutex);
796 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK
798 ** This routine sets the progress callback for an Sqlite database to the
799 ** given callback function with the given argument. The progress callback will
800 ** be invoked every nOps opcodes.
802 void sqlite3_progress_handler(
805 int (*xProgress)(void*),
808 sqlite3_mutex_enter(db->mutex);
810 db->xProgress = xProgress;
811 db->nProgressOps = nOps;
812 db->pProgressArg = pArg;
815 db->nProgressOps = 0;
816 db->pProgressArg = 0;
818 sqlite3_mutex_leave(db->mutex);
824 ** This routine installs a default busy handler that waits for the
825 ** specified number of milliseconds before returning 0.
827 int sqlite3_busy_timeout(sqlite3 *db, int ms){
829 db->busyTimeout = ms;
830 sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db);
832 sqlite3_busy_handler(db, 0, 0);
838 ** Cause any pending operation to stop at its earliest opportunity.
840 void sqlite3_interrupt(sqlite3 *db){
841 db->u1.isInterrupted = 1;
846 ** This function is exactly the same as sqlite3_create_function(), except
847 ** that it is designed to be called by internal code. The difference is
848 ** that if a malloc() fails in sqlite3_create_function(), an error code
849 ** is returned and the mallocFailed flag cleared.
851 int sqlite3CreateFunc(
853 const char *zFunctionName,
857 void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
858 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
859 void (*xFinal)(sqlite3_context*)
864 assert( sqlite3_mutex_held(db->mutex) );
865 if( zFunctionName==0 ||
866 (xFunc && (xFinal || xStep)) ||
867 (!xFunc && (xFinal && !xStep)) ||
868 (!xFunc && (!xFinal && xStep)) ||
869 (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) ||
870 (255<(nName = sqlite3Strlen(db, zFunctionName))) ){
871 sqlite3Error(db, SQLITE_ERROR, "bad parameters");
875 #ifndef SQLITE_OMIT_UTF16
876 /* If SQLITE_UTF16 is specified as the encoding type, transform this
877 ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
878 ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
880 ** If SQLITE_ANY is specified, add three versions of the function
881 ** to the hash table.
883 if( enc==SQLITE_UTF16 ){
884 enc = SQLITE_UTF16NATIVE;
885 }else if( enc==SQLITE_ANY ){
887 rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF8,
888 pUserData, xFunc, xStep, xFinal);
890 rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF16LE,
891 pUserData, xFunc, xStep, xFinal);
896 enc = SQLITE_UTF16BE;
902 /* Check if an existing function is being overridden or deleted. If so,
903 ** and there are active VMs, then return SQLITE_BUSY. If a function
904 ** is being overridden/deleted but there are no active VMs, allow the
905 ** operation to continue but invalidate all precompiled statements.
907 p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 0);
908 if( p && p->iPrefEnc==enc && p->nArg==nArg ){
909 if( db->activeVdbeCnt ){
910 sqlite3Error(db, SQLITE_BUSY,
911 "Unable to delete/modify user-function due to active statements");
912 assert( !db->mallocFailed );
915 sqlite3ExpirePreparedStatements(db);
919 p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 1);
920 assert(p || db->mallocFailed);
927 p->xFinalize = xFinal;
928 p->pUserData = pUserData;
934 ** Create new user functions.
936 int sqlite3_create_function(
938 const char *zFunctionName,
942 void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
943 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
944 void (*xFinal)(sqlite3_context*)
947 sqlite3_mutex_enter(db->mutex);
948 rc = sqlite3CreateFunc(db, zFunctionName, nArg, enc, p, xFunc, xStep, xFinal);
949 rc = sqlite3ApiExit(db, rc);
950 sqlite3_mutex_leave(db->mutex);
954 #ifndef SQLITE_OMIT_UTF16
955 int sqlite3_create_function16(
957 const void *zFunctionName,
961 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
962 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
963 void (*xFinal)(sqlite3_context*)
967 sqlite3_mutex_enter(db->mutex);
968 assert( !db->mallocFailed );
969 zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1);
970 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal);
971 sqlite3DbFree(db, zFunc8);
972 rc = sqlite3ApiExit(db, rc);
973 sqlite3_mutex_leave(db->mutex);
980 ** Declare that a function has been overloaded by a virtual table.
982 ** If the function already exists as a regular global function, then
983 ** this routine is a no-op. If the function does not exist, then create
984 ** a new one that always throws a run-time error.
986 ** When virtual tables intend to provide an overloaded function, they
987 ** should call this routine to make sure the global function exists.
988 ** A global function must exist in order for name resolution to work
991 int sqlite3_overload_function(
996 int nName = sqlite3Strlen(db, zName);
998 sqlite3_mutex_enter(db->mutex);
999 if( sqlite3FindFunction(db, zName, nName, nArg, SQLITE_UTF8, 0)==0 ){
1000 sqlite3CreateFunc(db, zName, nArg, SQLITE_UTF8,
1001 0, sqlite3InvalidFunction, 0, 0);
1003 rc = sqlite3ApiExit(db, SQLITE_OK);
1004 sqlite3_mutex_leave(db->mutex);
1008 #ifndef SQLITE_OMIT_TRACE
1010 ** Register a trace function. The pArg from the previously registered trace
1013 ** A NULL trace function means that no tracing is executes. A non-NULL
1014 ** trace is a pointer to a function that is invoked at the start of each
1017 void *sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
1019 sqlite3_mutex_enter(db->mutex);
1020 pOld = db->pTraceArg;
1021 db->xTrace = xTrace;
1022 db->pTraceArg = pArg;
1023 sqlite3_mutex_leave(db->mutex);
1027 ** Register a profile function. The pArg from the previously registered
1028 ** profile function is returned.
1030 ** A NULL profile function means that no profiling is executes. A non-NULL
1031 ** profile is a pointer to a function that is invoked at the conclusion of
1032 ** each SQL statement that is run.
1034 void *sqlite3_profile(
1036 void (*xProfile)(void*,const char*,sqlite_uint64),
1040 sqlite3_mutex_enter(db->mutex);
1041 pOld = db->pProfileArg;
1042 db->xProfile = xProfile;
1043 db->pProfileArg = pArg;
1044 sqlite3_mutex_leave(db->mutex);
1047 #endif /* SQLITE_OMIT_TRACE */
1049 /*** EXPERIMENTAL ***
1051 ** Register a function to be invoked when a transaction comments.
1052 ** If the invoked function returns non-zero, then the commit becomes a
1055 void *sqlite3_commit_hook(
1056 sqlite3 *db, /* Attach the hook to this database */
1057 int (*xCallback)(void*), /* Function to invoke on each commit */
1058 void *pArg /* Argument to the function */
1061 sqlite3_mutex_enter(db->mutex);
1062 pOld = db->pCommitArg;
1063 db->xCommitCallback = xCallback;
1064 db->pCommitArg = pArg;
1065 sqlite3_mutex_leave(db->mutex);
1070 ** Register a callback to be invoked each time a row is updated,
1071 ** inserted or deleted using this database connection.
1073 void *sqlite3_update_hook(
1074 sqlite3 *db, /* Attach the hook to this database */
1075 void (*xCallback)(void*,int,char const *,char const *,sqlite_int64),
1076 void *pArg /* Argument to the function */
1079 sqlite3_mutex_enter(db->mutex);
1080 pRet = db->pUpdateArg;
1081 db->xUpdateCallback = xCallback;
1082 db->pUpdateArg = pArg;
1083 sqlite3_mutex_leave(db->mutex);
1088 ** Register a callback to be invoked each time a transaction is rolled
1089 ** back by this database connection.
1091 void *sqlite3_rollback_hook(
1092 sqlite3 *db, /* Attach the hook to this database */
1093 void (*xCallback)(void*), /* Callback function */
1094 void *pArg /* Argument to the function */
1097 sqlite3_mutex_enter(db->mutex);
1098 pRet = db->pRollbackArg;
1099 db->xRollbackCallback = xCallback;
1100 db->pRollbackArg = pArg;
1101 sqlite3_mutex_leave(db->mutex);
1106 ** This routine is called to create a connection to a database BTree
1107 ** driver. If zFilename is the name of a file, then that file is
1108 ** opened and used. If zFilename is the magic name ":memory:" then
1109 ** the database is stored in memory (and is thus forgotten as soon as
1110 ** the connection is closed.) If zFilename is NULL then the database
1111 ** is a "virtual" database for transient use only and is deleted as
1112 ** soon as the connection is closed.
1114 ** A virtual database can be either a disk file (that is automatically
1115 ** deleted when the file is closed) or it an be held entirely in memory,
1116 ** depending on the values of the SQLITE_TEMP_STORE compile-time macro and the
1117 ** db->temp_store variable, according to the following chart:
1119 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
1120 ** ----------------- -------------- ------------------------------
1130 int sqlite3BtreeFactory(
1131 const sqlite3 *db, /* Main database when opening aux otherwise 0 */
1132 const char *zFilename, /* Name of the file containing the BTree database */
1133 int omitJournal, /* if TRUE then do not journal this file */
1134 int nCache, /* How many pages in the page cache */
1135 int vfsFlags, /* Flags passed through to vfsOpen */
1136 Btree **ppBtree /* Pointer to new Btree object written here */
1141 assert( sqlite3_mutex_held(db->mutex) );
1142 assert( ppBtree != 0);
1144 btFlags |= BTREE_OMIT_JOURNAL;
1146 if( db->flags & SQLITE_NoReadlock ){
1147 btFlags |= BTREE_NO_READLOCK;
1150 #if SQLITE_TEMP_STORE==0
1153 #ifndef SQLITE_OMIT_MEMORYDB
1154 #if SQLITE_TEMP_STORE==1
1155 if( db->temp_store==2 ) zFilename = ":memory:";
1157 #if SQLITE_TEMP_STORE==2
1158 if( db->temp_store!=1 ) zFilename = ":memory:";
1160 #if SQLITE_TEMP_STORE==3
1161 zFilename = ":memory:";
1163 #endif /* SQLITE_OMIT_MEMORYDB */
1166 if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (zFilename==0 || *zFilename==0) ){
1167 vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB;
1169 rc = sqlite3BtreeOpen(zFilename, (sqlite3 *)db, ppBtree, btFlags, vfsFlags);
1171 /* If the B-Tree was successfully opened, set the pager-cache size to the
1172 ** default value. Except, if the call to BtreeOpen() returned a handle
1173 ** open on an existing shared pager-cache, do not change the pager-cache
1176 if( rc==SQLITE_OK && 0==sqlite3BtreeSchema(*ppBtree, 0, 0) ){
1177 sqlite3BtreeSetCacheSize(*ppBtree, nCache);
1183 ** Return UTF-8 encoded English language explanation of the most recent
1186 const char *sqlite3_errmsg(sqlite3 *db){
1189 return sqlite3ErrStr(SQLITE_NOMEM);
1191 if( !sqlite3SafetyCheckSickOrOk(db) ){
1192 return sqlite3ErrStr(SQLITE_MISUSE);
1194 sqlite3_mutex_enter(db->mutex);
1195 assert( !db->mallocFailed );
1196 z = (char*)sqlite3_value_text(db->pErr);
1197 assert( !db->mallocFailed );
1199 z = sqlite3ErrStr(db->errCode);
1201 sqlite3_mutex_leave(db->mutex);
1205 #ifndef SQLITE_OMIT_UTF16
1207 ** Return UTF-16 encoded English language explanation of the most recent
1210 const void *sqlite3_errmsg16(sqlite3 *db){
1211 static const u16 outOfMem[] = {
1212 'o', 'u', 't', ' ', 'o', 'f', ' ', 'm', 'e', 'm', 'o', 'r', 'y', 0
1214 static const u16 misuse[] = {
1215 'l', 'i', 'b', 'r', 'a', 'r', 'y', ' ',
1216 'r', 'o', 'u', 't', 'i', 'n', 'e', ' ',
1217 'c', 'a', 'l', 'l', 'e', 'd', ' ',
1220 's', 'e', 'q', 'u', 'e', 'n', 'c', 'e', 0
1225 return (void *)outOfMem;
1227 if( !sqlite3SafetyCheckSickOrOk(db) ){
1228 return (void *)misuse;
1230 sqlite3_mutex_enter(db->mutex);
1231 assert( !db->mallocFailed );
1232 z = sqlite3_value_text16(db->pErr);
1234 sqlite3ValueSetStr(db->pErr, -1, sqlite3ErrStr(db->errCode),
1235 SQLITE_UTF8, SQLITE_STATIC);
1236 z = sqlite3_value_text16(db->pErr);
1238 /* A malloc() may have failed within the call to sqlite3_value_text16()
1239 ** above. If this is the case, then the db->mallocFailed flag needs to
1240 ** be cleared before returning. Do this directly, instead of via
1241 ** sqlite3ApiExit(), to avoid setting the database handle error message.
1243 db->mallocFailed = 0;
1244 sqlite3_mutex_leave(db->mutex);
1247 #endif /* SQLITE_OMIT_UTF16 */
1250 ** Return the most recent error code generated by an SQLite routine. If NULL is
1251 ** passed to this function, we assume a malloc() failed during sqlite3_open().
1253 int sqlite3_errcode(sqlite3 *db){
1254 if( db && !sqlite3SafetyCheckSickOrOk(db) ){
1255 return SQLITE_MISUSE;
1257 if( !db || db->mallocFailed ){
1258 return SQLITE_NOMEM;
1260 return db->errCode & db->errMask;
1264 ** Create a new collating function for database "db". The name is zName
1265 ** and the encoding is enc.
1267 static int createCollation(
1272 int(*xCompare)(void*,int,const void*,int,const void*),
1279 assert( sqlite3_mutex_held(db->mutex) );
1281 /* If SQLITE_UTF16 is specified as the encoding type, transform this
1282 ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
1283 ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
1285 enc2 = enc & ~SQLITE_UTF16_ALIGNED;
1286 if( enc2==SQLITE_UTF16 ){
1287 enc2 = SQLITE_UTF16NATIVE;
1290 return SQLITE_MISUSE;
1293 /* Check if this call is removing or replacing an existing collation
1294 ** sequence. If so, and there are active VMs, return busy. If there
1295 ** are no active VMs, invalidate any pre-compiled statements.
1297 nName = sqlite3Strlen(db, zName);
1298 pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 0);
1299 if( pColl && pColl->xCmp ){
1300 if( db->activeVdbeCnt ){
1301 sqlite3Error(db, SQLITE_BUSY,
1302 "Unable to delete/modify collation sequence due to active statements");
1305 sqlite3ExpirePreparedStatements(db);
1307 /* If collation sequence pColl was created directly by a call to
1308 ** sqlite3_create_collation, and not generated by synthCollSeq(),
1309 ** then any copies made by synthCollSeq() need to be invalidated.
1310 ** Also, collation destructor - CollSeq.xDel() - function may need
1313 if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){
1314 CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName, nName);
1317 CollSeq *p = &aColl[j];
1318 if( p->enc==pColl->enc ){
1328 pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 1);
1330 pColl->xCmp = xCompare;
1331 pColl->pUser = pCtx;
1333 pColl->enc = enc2 | (enc & SQLITE_UTF16_ALIGNED);
1335 sqlite3Error(db, SQLITE_OK, 0);
1341 ** This array defines hard upper bounds on limit values. The
1342 ** initializer must be kept in sync with the SQLITE_LIMIT_*
1343 ** #defines in sqlite3.h.
1345 static const int aHardLimit[] = {
1347 SQLITE_MAX_SQL_LENGTH,
1349 SQLITE_MAX_EXPR_DEPTH,
1350 SQLITE_MAX_COMPOUND_SELECT,
1352 SQLITE_MAX_FUNCTION_ARG,
1353 SQLITE_MAX_ATTACHED,
1354 SQLITE_MAX_LIKE_PATTERN_LENGTH,
1355 SQLITE_MAX_VARIABLE_NUMBER,
1359 ** Make sure the hard limits are set to reasonable values
1361 #if SQLITE_MAX_LENGTH<100
1362 # error SQLITE_MAX_LENGTH must be at least 100
1364 #if SQLITE_MAX_SQL_LENGTH<100
1365 # error SQLITE_MAX_SQL_LENGTH must be at least 100
1367 #if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH
1368 # error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH
1370 #if SQLITE_MAX_COMPOUND_SELECT<2
1371 # error SQLITE_MAX_COMPOUND_SELECT must be at least 2
1373 #if SQLITE_MAX_VDBE_OP<40
1374 # error SQLITE_MAX_VDBE_OP must be at least 40
1376 #if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>1000
1377 # error SQLITE_MAX_FUNCTION_ARG must be between 0 and 1000
1379 #if SQLITE_MAX_ATTACHED<0 || SQLITE_MAX_ATTACHED>30
1380 # error SQLITE_MAX_ATTACHED must be between 0 and 30
1382 #if SQLITE_MAX_LIKE_PATTERN_LENGTH<1
1383 # error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1
1385 #if SQLITE_MAX_VARIABLE_NUMBER<1
1386 # error SQLITE_MAX_VARIABLE_NUMBER must be at least 1
1388 #if SQLITE_MAX_COLUMN>32767
1389 # error SQLITE_MAX_COLUMN must not exceed 32767
1394 ** Change the value of a limit. Report the old value.
1395 ** If an invalid limit index is supplied, report -1.
1396 ** Make no changes but still report the old value if the
1397 ** new limit is negative.
1399 ** A new lower limit does not shrink existing constructs.
1400 ** It merely prevents new constructs that exceed the limit
1403 int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){
1405 if( limitId<0 || limitId>=SQLITE_N_LIMIT ){
1408 oldLimit = db->aLimit[limitId];
1410 if( newLimit>aHardLimit[limitId] ){
1411 newLimit = aHardLimit[limitId];
1413 db->aLimit[limitId] = newLimit;
1419 ** This routine does the work of opening a database on behalf of
1420 ** sqlite3_open() and sqlite3_open16(). The database filename "zFilename"
1421 ** is UTF-8 encoded.
1423 static int openDatabase(
1424 const char *zFilename, /* Database filename UTF-8 encoded */
1425 sqlite3 **ppDb, /* OUT: Returned database handle */
1426 unsigned flags, /* Operational flags */
1427 const char *zVfs /* Name of the VFS to use */
1434 #ifndef SQLITE_OMIT_AUTOINIT
1435 rc = sqlite3_initialize();
1439 if( sqlite3GlobalConfig.bCoreMutex==0 ){
1441 }else if( flags & SQLITE_OPEN_NOMUTEX ){
1443 }else if( flags & SQLITE_OPEN_FULLMUTEX ){
1446 isThreadsafe = sqlite3GlobalConfig.bFullMutex;
1449 /* Remove harmful bits from the flags parameter */
1450 flags &= ~( SQLITE_OPEN_DELETEONCLOSE |
1451 SQLITE_OPEN_MAIN_DB |
1452 SQLITE_OPEN_TEMP_DB |
1453 SQLITE_OPEN_TRANSIENT_DB |
1454 SQLITE_OPEN_MAIN_JOURNAL |
1455 SQLITE_OPEN_TEMP_JOURNAL |
1456 SQLITE_OPEN_SUBJOURNAL |
1457 SQLITE_OPEN_MASTER_JOURNAL |
1458 SQLITE_OPEN_NOMUTEX |
1459 SQLITE_OPEN_FULLMUTEX
1462 /* Allocate the sqlite data structure */
1463 db = sqlite3MallocZero( sizeof(sqlite3) );
1464 if( db==0 ) goto opendb_out;
1466 db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
1473 sqlite3_mutex_enter(db->mutex);
1475 db->priorNewRowid = 0;
1477 db->magic = SQLITE_MAGIC_BUSY;
1478 db->aDb = db->aDbStatic;
1480 assert( sizeof(db->aLimit)==sizeof(aHardLimit) );
1481 memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit));
1483 db->nextAutovac = -1;
1484 db->nextPagesize = 0;
1485 db->flags |= SQLITE_ShortColNames
1486 #if SQLITE_DEFAULT_FILE_FORMAT<4
1487 | SQLITE_LegacyFileFmt
1489 #ifdef SQLITE_ENABLE_LOAD_EXTENSION
1490 | SQLITE_LoadExtension
1493 sqlite3HashInit(&db->aCollSeq, 0);
1494 #ifndef SQLITE_OMIT_VIRTUALTABLE
1495 sqlite3HashInit(&db->aModule, 0);
1498 db->pVfs = sqlite3_vfs_find(zVfs);
1501 sqlite3Error(db, rc, "no such vfs: %s", zVfs);
1505 /* Add the default collation sequence BINARY. BINARY works for both UTF-8
1506 ** and UTF-16, so add a version for each to avoid any unnecessary
1507 ** conversions. The only error that can occur here is a malloc() failure.
1509 createCollation(db, "BINARY", SQLITE_UTF8, 0, binCollFunc, 0);
1510 createCollation(db, "BINARY", SQLITE_UTF16BE, 0, binCollFunc, 0);
1511 createCollation(db, "BINARY", SQLITE_UTF16LE, 0, binCollFunc, 0);
1512 createCollation(db, "RTRIM", SQLITE_UTF8, (void*)1, binCollFunc, 0);
1513 if( db->mallocFailed ){
1516 db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 6, 0);
1517 assert( db->pDfltColl!=0 );
1519 /* Also add a UTF-8 case-insensitive collation sequence. */
1520 createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0);
1522 /* Set flags on the built-in collating sequences */
1523 db->pDfltColl->type = SQLITE_COLL_BINARY;
1524 pColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "NOCASE", 6, 0);
1526 pColl->type = SQLITE_COLL_NOCASE;
1529 /* Open the backend database driver */
1530 db->openFlags = flags;
1531 rc = sqlite3BtreeFactory(db, zFilename, 0, SQLITE_DEFAULT_CACHE_SIZE,
1532 flags | SQLITE_OPEN_MAIN_DB,
1534 if( rc!=SQLITE_OK ){
1535 if( rc==SQLITE_IOERR_NOMEM ){
1538 sqlite3Error(db, rc, 0);
1541 db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt);
1542 db->aDb[1].pSchema = sqlite3SchemaGet(db, 0);
1545 /* The default safety_level for the main database is 'full'; for the temp
1546 ** database it is 'NONE'. This matches the pager layer defaults.
1548 db->aDb[0].zName = "main";
1549 db->aDb[0].safety_level = 3;
1550 #ifndef SQLITE_OMIT_TEMPDB
1551 db->aDb[1].zName = "temp";
1552 db->aDb[1].safety_level = 1;
1555 db->magic = SQLITE_MAGIC_OPEN;
1556 if( db->mallocFailed ){
1560 /* Register all built-in functions, but do not attempt to read the
1561 ** database schema yet. This is delayed until the first time the database
1564 sqlite3Error(db, SQLITE_OK, 0);
1565 sqlite3RegisterBuiltinFunctions(db);
1567 /* Load automatic extensions - extensions that have been registered
1568 ** using the sqlite3_automatic_extension() API.
1570 (void)sqlite3AutoLoadExtensions(db);
1571 if( sqlite3_errcode(db)!=SQLITE_OK ){
1575 #ifdef SQLITE_ENABLE_FTS1
1576 if( !db->mallocFailed ){
1577 extern int sqlite3Fts1Init(sqlite3*);
1578 rc = sqlite3Fts1Init(db);
1582 #ifdef SQLITE_ENABLE_FTS2
1583 if( !db->mallocFailed && rc==SQLITE_OK ){
1584 extern int sqlite3Fts2Init(sqlite3*);
1585 rc = sqlite3Fts2Init(db);
1589 #ifdef SQLITE_ENABLE_FTS3
1590 if( !db->mallocFailed && rc==SQLITE_OK ){
1591 rc = sqlite3Fts3Init(db);
1595 #ifdef SQLITE_ENABLE_ICU
1596 if( !db->mallocFailed && rc==SQLITE_OK ){
1597 rc = sqlite3IcuInit(db);
1601 #ifdef SQLITE_ENABLE_RTREE
1602 if( !db->mallocFailed && rc==SQLITE_OK){
1603 rc = sqlite3RtreeInit(db);
1607 sqlite3Error(db, rc, 0);
1609 /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking
1610 ** mode. -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking
1611 ** mode. Doing nothing at all also makes NORMAL the default.
1613 #ifdef SQLITE_DEFAULT_LOCKING_MODE
1614 db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE;
1615 sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt),
1616 SQLITE_DEFAULT_LOCKING_MODE);
1619 /* Enable the lookaside-malloc subsystem */
1620 setupLookaside(db, 0, sqlite3GlobalConfig.szLookaside,
1621 sqlite3GlobalConfig.nLookaside);
1625 assert( db->mutex!=0 || isThreadsafe==0 || sqlite3GlobalConfig.bFullMutex==0 );
1626 sqlite3_mutex_leave(db->mutex);
1628 rc = sqlite3_errcode(db);
1629 if( rc==SQLITE_NOMEM ){
1632 }else if( rc!=SQLITE_OK ){
1633 db->magic = SQLITE_MAGIC_SICK;
1636 return sqlite3ApiExit(0, rc);
1640 ** Open a new database handle.
1643 const char *zFilename,
1646 return openDatabase(zFilename, ppDb,
1647 SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
1649 int sqlite3_open_v2(
1650 const char *filename, /* Database filename (UTF-8) */
1651 sqlite3 **ppDb, /* OUT: SQLite db handle */
1652 int flags, /* Flags */
1653 const char *zVfs /* Name of VFS module to use */
1655 return openDatabase(filename, ppDb, flags, zVfs);
1658 #ifndef SQLITE_OMIT_UTF16
1660 ** Open a new database handle.
1663 const void *zFilename,
1666 char const *zFilename8; /* zFilename encoded in UTF-8 instead of UTF-16 */
1667 sqlite3_value *pVal;
1670 assert( zFilename );
1673 #ifndef SQLITE_OMIT_AUTOINIT
1674 rc = sqlite3_initialize();
1677 pVal = sqlite3ValueNew(0);
1678 sqlite3ValueSetStr(pVal, -1, zFilename, SQLITE_UTF16NATIVE, SQLITE_STATIC);
1679 zFilename8 = sqlite3ValueText(pVal, SQLITE_UTF8);
1681 rc = openDatabase(zFilename8, ppDb,
1682 SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
1683 assert( *ppDb || rc==SQLITE_NOMEM );
1684 if( rc==SQLITE_OK && !DbHasProperty(*ppDb, 0, DB_SchemaLoaded) ){
1685 ENC(*ppDb) = SQLITE_UTF16NATIVE;
1690 sqlite3ValueFree(pVal);
1692 return sqlite3ApiExit(0, rc);
1694 #endif /* SQLITE_OMIT_UTF16 */
1697 ** Register a new collation sequence with the database handle db.
1699 int sqlite3_create_collation(
1704 int(*xCompare)(void*,int,const void*,int,const void*)
1707 sqlite3_mutex_enter(db->mutex);
1708 assert( !db->mallocFailed );
1709 rc = createCollation(db, zName, enc, pCtx, xCompare, 0);
1710 rc = sqlite3ApiExit(db, rc);
1711 sqlite3_mutex_leave(db->mutex);
1716 ** Register a new collation sequence with the database handle db.
1718 int sqlite3_create_collation_v2(
1723 int(*xCompare)(void*,int,const void*,int,const void*),
1727 sqlite3_mutex_enter(db->mutex);
1728 assert( !db->mallocFailed );
1729 rc = createCollation(db, zName, enc, pCtx, xCompare, xDel);
1730 rc = sqlite3ApiExit(db, rc);
1731 sqlite3_mutex_leave(db->mutex);
1735 #ifndef SQLITE_OMIT_UTF16
1737 ** Register a new collation sequence with the database handle db.
1739 int sqlite3_create_collation16(
1744 int(*xCompare)(void*,int,const void*,int,const void*)
1748 sqlite3_mutex_enter(db->mutex);
1749 assert( !db->mallocFailed );
1750 zName8 = sqlite3Utf16to8(db, zName, -1);
1752 rc = createCollation(db, zName8, enc, pCtx, xCompare, 0);
1753 sqlite3DbFree(db, zName8);
1755 rc = sqlite3ApiExit(db, rc);
1756 sqlite3_mutex_leave(db->mutex);
1759 #endif /* SQLITE_OMIT_UTF16 */
1762 ** Register a collation sequence factory callback with the database handle
1763 ** db. Replace any previously installed collation sequence factory.
1765 int sqlite3_collation_needed(
1767 void *pCollNeededArg,
1768 void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*)
1770 sqlite3_mutex_enter(db->mutex);
1771 db->xCollNeeded = xCollNeeded;
1772 db->xCollNeeded16 = 0;
1773 db->pCollNeededArg = pCollNeededArg;
1774 sqlite3_mutex_leave(db->mutex);
1778 #ifndef SQLITE_OMIT_UTF16
1780 ** Register a collation sequence factory callback with the database handle
1781 ** db. Replace any previously installed collation sequence factory.
1783 int sqlite3_collation_needed16(
1785 void *pCollNeededArg,
1786 void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*)
1788 sqlite3_mutex_enter(db->mutex);
1789 db->xCollNeeded = 0;
1790 db->xCollNeeded16 = xCollNeeded16;
1791 db->pCollNeededArg = pCollNeededArg;
1792 sqlite3_mutex_leave(db->mutex);
1795 #endif /* SQLITE_OMIT_UTF16 */
1797 #ifndef SQLITE_OMIT_GLOBALRECOVER
1798 #ifndef SQLITE_OMIT_DEPRECATED
1800 ** This function is now an anachronism. It used to be used to recover from a
1801 ** malloc() failure, but SQLite now does this automatically.
1803 int sqlite3_global_recover(void){
1810 ** Test to see whether or not the database connection is in autocommit
1811 ** mode. Return TRUE if it is and FALSE if not. Autocommit mode is on
1812 ** by default. Autocommit is disabled by a BEGIN statement and reenabled
1813 ** by the next COMMIT or ROLLBACK.
1815 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
1817 int sqlite3_get_autocommit(sqlite3 *db){
1818 return db->autoCommit;
1823 ** The following routine is subtituted for constant SQLITE_CORRUPT in
1824 ** debugging builds. This provides a way to set a breakpoint for when
1825 ** corruption is first detected.
1827 int sqlite3Corrupt(void){
1828 return SQLITE_CORRUPT;
1832 #ifndef SQLITE_OMIT_DEPRECATED
1834 ** This is a convenience routine that makes sure that all thread-specific
1835 ** data for this thread has been deallocated.
1837 ** SQLite no longer uses thread-specific data so this routine is now a
1838 ** no-op. It is retained for historical compatibility.
1840 void sqlite3_thread_cleanup(void){
1845 ** Return meta information about a specific column of a database table.
1846 ** See comment in sqlite3.h (sqlite.h.in) for details.
1848 #ifdef SQLITE_ENABLE_COLUMN_METADATA
1849 int sqlite3_table_column_metadata(
1850 sqlite3 *db, /* Connection handle */
1851 const char *zDbName, /* Database name or NULL */
1852 const char *zTableName, /* Table name */
1853 const char *zColumnName, /* Column name */
1854 char const **pzDataType, /* OUTPUT: Declared data type */
1855 char const **pzCollSeq, /* OUTPUT: Collation sequence name */
1856 int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */
1857 int *pPrimaryKey, /* OUTPUT: True if column part of PK */
1858 int *pAutoinc /* OUTPUT: True if column is auto-increment */
1866 char const *zDataType = 0;
1867 char const *zCollSeq = 0;
1872 /* Ensure the database schema has been loaded */
1873 sqlite3_mutex_enter(db->mutex);
1874 (void)sqlite3SafetyOn(db);
1875 sqlite3BtreeEnterAll(db);
1876 rc = sqlite3Init(db, &zErrMsg);
1877 sqlite3BtreeLeaveAll(db);
1878 if( SQLITE_OK!=rc ){
1882 /* Locate the table in question */
1883 pTab = sqlite3FindTable(db, zTableName, zDbName);
1884 if( !pTab || pTab->pSelect ){
1889 /* Find the column for which info is requested */
1890 if( sqlite3IsRowid(zColumnName) ){
1893 pCol = &pTab->aCol[iCol];
1896 for(iCol=0; iCol<pTab->nCol; iCol++){
1897 pCol = &pTab->aCol[iCol];
1898 if( 0==sqlite3StrICmp(pCol->zName, zColumnName) ){
1902 if( iCol==pTab->nCol ){
1908 /* The following block stores the meta information that will be returned
1909 ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey
1910 ** and autoinc. At this point there are two possibilities:
1912 ** 1. The specified column name was rowid", "oid" or "_rowid_"
1913 ** and there is no explicitly declared IPK column.
1915 ** 2. The table is not a view and the column name identified an
1916 ** explicitly declared column. Copy meta information from *pCol.
1919 zDataType = pCol->zType;
1920 zCollSeq = pCol->zColl;
1921 notnull = pCol->notNull!=0;
1922 primarykey = pCol->isPrimKey!=0;
1923 autoinc = pTab->iPKey==iCol && (pTab->tabFlags & TF_Autoincrement)!=0;
1925 zDataType = "INTEGER";
1929 zCollSeq = "BINARY";
1933 (void)sqlite3SafetyOff(db);
1935 /* Whether the function call succeeded or failed, set the output parameters
1936 ** to whatever their local counterparts contain. If an error did occur,
1937 ** this has the effect of zeroing all output parameters.
1939 if( pzDataType ) *pzDataType = zDataType;
1940 if( pzCollSeq ) *pzCollSeq = zCollSeq;
1941 if( pNotNull ) *pNotNull = notnull;
1942 if( pPrimaryKey ) *pPrimaryKey = primarykey;
1943 if( pAutoinc ) *pAutoinc = autoinc;
1945 if( SQLITE_OK==rc && !pTab ){
1946 sqlite3DbFree(db, zErrMsg);
1947 zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName,
1951 sqlite3Error(db, rc, (zErrMsg?"%s":0), zErrMsg);
1952 sqlite3DbFree(db, zErrMsg);
1953 rc = sqlite3ApiExit(db, rc);
1954 sqlite3_mutex_leave(db->mutex);
1960 ** Sleep for a little while. Return the amount of time slept.
1962 int sqlite3_sleep(int ms){
1965 pVfs = sqlite3_vfs_find(0);
1966 if( pVfs==0 ) return 0;
1968 /* This function works in milliseconds, but the underlying OsSleep()
1969 ** API uses microseconds. Hence the 1000's.
1971 rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000);
1976 ** Enable or disable the extended result codes.
1978 int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
1979 sqlite3_mutex_enter(db->mutex);
1980 db->errMask = onoff ? 0xffffffff : 0xff;
1981 sqlite3_mutex_leave(db->mutex);
1986 ** Invoke the xFileControl method on a particular database.
1988 int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
1989 int rc = SQLITE_ERROR;
1991 sqlite3_mutex_enter(db->mutex);
1995 for(iDb=0; iDb<db->nDb; iDb++){
1996 if( strcmp(db->aDb[iDb].zName, zDbName)==0 ) break;
2000 Btree *pBtree = db->aDb[iDb].pBt;
2004 sqlite3BtreeEnter(pBtree);
2005 pPager = sqlite3BtreePager(pBtree);
2006 assert( pPager!=0 );
2007 fd = sqlite3PagerFile(pPager);
2010 rc = sqlite3OsFileControl(fd, op, pArg);
2012 sqlite3BtreeLeave(pBtree);
2015 sqlite3_mutex_leave(db->mutex);
2020 ** Interface to the testing logic.
2022 int sqlite3_test_control(int op, ...){
2024 #ifndef SQLITE_OMIT_BUILTIN_TEST
2030 ** Save the current state of the PRNG.
2032 case SQLITE_TESTCTRL_PRNG_SAVE: {
2033 sqlite3PrngSaveState();
2038 ** Restore the state of the PRNG to the last state saved using
2039 ** PRNG_SAVE. If PRNG_SAVE has never before been called, then
2040 ** this verb acts like PRNG_RESET.
2042 case SQLITE_TESTCTRL_PRNG_RESTORE: {
2043 sqlite3PrngRestoreState();
2048 ** Reset the PRNG back to its uninitialized state. The next call
2049 ** to sqlite3_randomness() will reseed the PRNG using a single call
2050 ** to the xRandomness method of the default VFS.
2052 case SQLITE_TESTCTRL_PRNG_RESET: {
2053 sqlite3PrngResetState();
2058 ** sqlite3_test_control(BITVEC_TEST, size, program)
2060 ** Run a test against a Bitvec object of size. The program argument
2061 ** is an array of integers that defines the test. Return -1 on a
2062 ** memory allocation error, 0 on success, or non-zero for an error.
2063 ** See the sqlite3BitvecBuiltinTest() for additional information.
2065 case SQLITE_TESTCTRL_BITVEC_TEST: {
2066 int sz = va_arg(ap, int);
2067 int *aProg = va_arg(ap, int*);
2068 rc = sqlite3BitvecBuiltinTest(sz, aProg);
2073 ** sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd)
2075 ** Register hooks to call to indicate which malloc() failures
2078 case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: {
2079 typedef void (*void_function)(void);
2080 void_function xBenignBegin;
2081 void_function xBenignEnd;
2082 xBenignBegin = va_arg(ap, void_function);
2083 xBenignEnd = va_arg(ap, void_function);
2084 sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd);
2089 #endif /* SQLITE_OMIT_BUILTIN_TEST */