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.502 2008/09/23 17:39:26 danielk1977 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 SQLITE_EXPORT const char *sqlite3_libversion(void){ return sqlite3_version; }
37 SQLITE_EXPORT int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; }
38 SQLITE_EXPORT 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 SQLITE_EXPORT 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 ){
139 sqlite3GlobalConfig.nRefInitMutex++;
141 sqlite3_mutex_leave(pMaster);
143 /* If unable to initialize the malloc subsystem, then return early.
144 ** There is little hope of getting SQLite to run if the malloc
145 ** subsystem cannot be initialized.
151 /* Do the rest of the initialization under the recursive mutex so
152 ** that we will be able to handle recursive calls into
153 ** sqlite3_initialize(). The recursive calls normally come through
154 ** sqlite3_os_init() when it invokes sqlite3_vfs_register(), but other
155 ** recursive calls might also be possible.
157 sqlite3_mutex_enter(sqlite3GlobalConfig.pInitMutex);
158 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){
159 FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions);
160 sqlite3GlobalConfig.inProgress = 1;
161 memset(pHash, 0, sizeof(sqlite3GlobalFunctions));
162 sqlite3RegisterGlobalFunctions();
163 rc = sqlite3_os_init();
165 rc = sqlite3PcacheInitialize();
166 sqlite3PCacheBufferSetup( sqlite3GlobalConfig.pPage,
167 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage);
169 sqlite3GlobalConfig.inProgress = 0;
170 sqlite3GlobalConfig.isInit = (rc==SQLITE_OK ? 1 : 0);
172 sqlite3_mutex_leave(sqlite3GlobalConfig.pInitMutex);
174 /* Go back under the static mutex and clean up the recursive
175 ** mutex to prevent a resource leak.
177 sqlite3_mutex_enter(pMaster);
178 sqlite3GlobalConfig.nRefInitMutex--;
179 if( sqlite3GlobalConfig.nRefInitMutex<=0 ){
180 assert( sqlite3GlobalConfig.nRefInitMutex==0 );
181 sqlite3_mutex_free(sqlite3GlobalConfig.pInitMutex);
182 sqlite3GlobalConfig.pInitMutex = 0;
184 sqlite3_mutex_leave(pMaster);
186 /* The following is just a sanity check to make sure SQLite has
187 ** been compiled correctly. It is important to run this code, but
188 ** we don't want to run it too often and soak up CPU cycles for no
189 ** reason. So we run it once during initialization.
192 /* This section of code's only "output" is via assert() statements. */
193 if ( rc==SQLITE_OK ){
194 u64 x = (((u64)1)<<63)-1;
196 assert(sizeof(x)==8);
197 assert(sizeof(x)==sizeof(y));
199 assert( sqlite3IsNaN(y) );
207 ** Undo the effects of sqlite3_initialize(). Must not be called while
208 ** there are outstanding database connections or memory allocations or
209 ** while any part of SQLite is otherwise in use in any thread. This
210 ** routine is not threadsafe. Not by a long shot.
212 SQLITE_EXPORT int sqlite3_shutdown(void){
213 sqlite3GlobalConfig.isMallocInit = 0;
214 sqlite3PcacheShutdown();
215 if( sqlite3GlobalConfig.isInit ){
218 if( sqlite3GlobalConfig.m.xShutdown ){
221 if( sqlite3GlobalConfig.mutex.xMutexEnd ){
224 sqlite3GlobalConfig.isInit = 0;
229 ** This API allows applications to modify the global configuration of
230 ** the SQLite library at run-time.
232 ** This routine should only be called when there are no outstanding
233 ** database connections or memory allocations. This routine is not
234 ** threadsafe. Failure to heed these warnings can lead to unpredictable
237 SQLITE_EXPORT int sqlite3_config(int op, ...){
241 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
242 ** the SQLite library is in use. */
243 if( sqlite3GlobalConfig.isInit ) return SQLITE_MISUSE;
247 case SQLITE_CONFIG_SINGLETHREAD: {
248 /* Disable all mutexing */
249 sqlite3GlobalConfig.bCoreMutex = 0;
250 sqlite3GlobalConfig.bFullMutex = 0;
253 case SQLITE_CONFIG_MULTITHREAD: {
254 /* Disable mutexing of database connections */
255 /* Enable mutexing of core data structures */
256 sqlite3GlobalConfig.bCoreMutex = 1;
257 sqlite3GlobalConfig.bFullMutex = 0;
260 case SQLITE_CONFIG_SERIALIZED: {
261 /* Enable all mutexing */
262 sqlite3GlobalConfig.bCoreMutex = 1;
263 sqlite3GlobalConfig.bFullMutex = 1;
266 case SQLITE_CONFIG_MALLOC: {
267 /* Specify an alternative malloc implementation */
268 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
271 case SQLITE_CONFIG_GETMALLOC: {
272 /* Retrieve the current malloc() implementation */
273 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();
274 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;
277 case SQLITE_CONFIG_MUTEX: {
278 /* Specify an alternative mutex implementation */
279 sqlite3GlobalConfig.mutex = *va_arg(ap, sqlite3_mutex_methods*);
282 case SQLITE_CONFIG_GETMUTEX: {
283 /* Retrieve the current mutex implementation */
284 *va_arg(ap, sqlite3_mutex_methods*) = sqlite3GlobalConfig.mutex;
287 case SQLITE_CONFIG_MEMSTATUS: {
288 /* Enable or disable the malloc status collection */
289 sqlite3GlobalConfig.bMemstat = va_arg(ap, int);
292 case SQLITE_CONFIG_SCRATCH: {
293 /* Designate a buffer for scratch memory space */
294 sqlite3GlobalConfig.pScratch = va_arg(ap, void*);
295 sqlite3GlobalConfig.szScratch = va_arg(ap, int);
296 sqlite3GlobalConfig.nScratch = va_arg(ap, int);
299 case SQLITE_CONFIG_PAGECACHE: {
300 /* Designate a buffer for scratch memory space */
301 sqlite3GlobalConfig.pPage = va_arg(ap, void*);
302 sqlite3GlobalConfig.szPage = va_arg(ap, int);
303 sqlite3GlobalConfig.nPage = va_arg(ap, int);
307 #if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5)
308 case SQLITE_CONFIG_HEAP: {
309 /* Designate a buffer for heap memory space */
310 sqlite3GlobalConfig.pHeap = va_arg(ap, void*);
311 sqlite3GlobalConfig.nHeap = va_arg(ap, int);
312 sqlite3GlobalConfig.mnReq = va_arg(ap, int);
314 if( sqlite3GlobalConfig.pHeap==0 ){
315 /* If the heap pointer is NULL, then restore the malloc implementation
316 ** back to NULL pointers too. This will cause the malloc to go
317 ** back to its default implementation when sqlite3_initialize() is
320 memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m));
322 /* The heap pointer is not NULL, then install one of the
323 ** mem5.c/mem3.c methods. If neither ENABLE_MEMSYS3 nor
324 ** ENABLE_MEMSYS5 is defined, return an error.
325 ** the default case and return an error.
327 #ifdef SQLITE_ENABLE_MEMSYS3
328 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys3();
330 #ifdef SQLITE_ENABLE_MEMSYS5
331 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys5();
338 #if defined(SQLITE_ENABLE_MEMSYS6)
339 case SQLITE_CONFIG_CHUNKALLOC: {
340 sqlite3GlobalConfig.nSmall = va_arg(ap, int);
341 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys6();
346 case SQLITE_CONFIG_LOOKASIDE: {
347 sqlite3GlobalConfig.szLookaside = va_arg(ap, int);
348 sqlite3GlobalConfig.nLookaside = va_arg(ap, int);
362 ** Set up the lookaside buffers for a database connection.
363 ** Return SQLITE_OK on success.
364 ** If lookaside is already active, return SQLITE_BUSY.
366 ** The sz parameter is the number of bytes in each lookaside slot.
367 ** The cnt parameter is the number of slots. If pStart is NULL the
368 ** space for the lookaside memory is obtained from sqlite3_malloc().
369 ** If pStart is not NULL then it is sz*cnt bytes of memory to use for
370 ** the lookaside memory.
372 static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){
374 if( db->lookaside.nOut ){
381 sqlite3BeginBenignMalloc();
382 pStart = sqlite3Malloc( sz*cnt );
383 sqlite3EndBenignMalloc();
388 if( db->lookaside.bMalloced ){
389 sqlite3_free(db->lookaside.pStart);
391 db->lookaside.pStart = pStart;
392 db->lookaside.pFree = 0;
393 db->lookaside.sz = sz;
394 db->lookaside.bMalloced = pBuf==0;
398 p = (LookasideSlot*)pStart;
399 for(i=cnt-1; i>=0; i--){
400 p->pNext = db->lookaside.pFree;
401 db->lookaside.pFree = p;
402 p = (LookasideSlot*)&((u8*)p)[sz];
404 db->lookaside.pEnd = p;
405 db->lookaside.bEnabled = 1;
407 db->lookaside.pEnd = 0;
408 db->lookaside.bEnabled = 0;
414 ** Configuration settings for an individual database connection
416 SQLITE_EXPORT int sqlite3_db_config(sqlite3 *db, int op, ...){
421 case SQLITE_DBCONFIG_LOOKASIDE: {
422 void *pBuf = va_arg(ap, void*);
423 int sz = va_arg(ap, int);
424 int cnt = va_arg(ap, int);
425 rc = setupLookaside(db, pBuf, sz, cnt);
438 ** Routine needed to support the testcase() macro.
440 #ifdef SQLITE_COVERAGE_TEST
441 void sqlite3Coverage(int x){
442 static int dummy = 0;
449 ** Return true if the buffer z[0..n-1] contains all spaces.
451 static int allSpaces(const char *z, int n){
452 while( n>0 && z[n-1]==' ' ){ n--; }
457 ** This is the default collating function named "BINARY" which is always
460 ** If the padFlag argument is not NULL then space padding at the end
461 ** of strings is ignored. This implements the RTRIM collation.
463 static int binCollFunc(
465 int nKey1, const void *pKey1,
466 int nKey2, const void *pKey2
469 n = nKey1<nKey2 ? nKey1 : nKey2;
470 rc = memcmp(pKey1, pKey2, n);
473 && allSpaces(((char*)pKey1)+n, nKey1-n)
474 && allSpaces(((char*)pKey2)+n, nKey2-n)
476 /* Leave rc unchanged at 0 */
485 ** Another built-in collating sequence: NOCASE.
487 ** This collating sequence is intended to be used for "case independant
488 ** comparison". SQLite's knowledge of upper and lower case equivalents
489 ** extends only to the 26 characters used in the English language.
491 ** At the moment there is only a UTF-8 implementation.
493 static int nocaseCollatingFunc(
495 int nKey1, const void *pKey1,
496 int nKey2, const void *pKey2
498 int r = sqlite3StrNICmp(
499 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
507 ** Return the ROWID of the most recent insert
509 SQLITE_EXPORT sqlite_int64 sqlite3_last_insert_rowid(sqlite3 *db){
510 return db->lastRowid;
514 ** Return the number of changes in the most recent call to sqlite3_exec().
516 SQLITE_EXPORT int sqlite3_changes(sqlite3 *db){
521 ** Return the number of changes since the database handle was opened.
523 SQLITE_EXPORT int sqlite3_total_changes(sqlite3 *db){
524 return db->nTotalChange;
528 ** Close an existing SQLite database
530 SQLITE_EXPORT int sqlite3_close(sqlite3 *db){
537 if( !sqlite3SafetyCheckSickOrOk(db) ){
538 return SQLITE_MISUSE;
540 sqlite3_mutex_enter(db->mutex);
544 extern void sqlite3SseCleanup(sqlite3*);
545 sqlite3SseCleanup(db);
549 sqlite3ResetInternalSchema(db, 0);
551 /* If a transaction is open, the ResetInternalSchema() call above
552 ** will not have called the xDisconnect() method on any virtual
553 ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback()
554 ** call will do so. We need to do this before the check for active
555 ** SQL statements below, as the v-table implementation may be storing
556 ** some prepared statements internally.
558 sqlite3VtabRollback(db);
560 /* If there are any outstanding VMs, return SQLITE_BUSY. */
562 sqlite3Error(db, SQLITE_BUSY,
563 "Unable to close due to unfinalised statements");
564 sqlite3_mutex_leave(db->mutex);
567 assert( sqlite3SafetyCheckSickOrOk(db) );
569 for(j=0; j<db->nDb; j++){
570 struct Db *pDb = &db->aDb[j];
572 sqlite3BtreeClose(pDb->pBt);
579 sqlite3ResetInternalSchema(db, 0);
580 assert( db->nDb<=2 );
581 assert( db->aDb==db->aDbStatic );
582 for(j=0; j<ArraySize(db->aFunc.a); j++){
583 FuncDef *pNext, *pHash, *p;
584 for(p=db->aFunc.a[j]; p; p=pHash){
588 sqlite3DbFree(db, p);
593 for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){
594 CollSeq *pColl = (CollSeq *)sqliteHashData(i);
595 /* Invoke any destructors registered for collation sequence user data. */
598 pColl[j].xDel(pColl[j].pUser);
601 sqlite3DbFree(db, pColl);
603 sqlite3HashClear(&db->aCollSeq);
604 #ifndef SQLITE_OMIT_VIRTUALTABLE
605 for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){
606 Module *pMod = (Module *)sqliteHashData(i);
607 if( pMod->xDestroy ){
608 pMod->xDestroy(pMod->pAux);
610 sqlite3DbFree(db, pMod);
612 sqlite3HashClear(&db->aModule);
615 sqlite3Error(db, SQLITE_OK, 0); /* Deallocates any cached error strings. */
617 sqlite3ValueFree(db->pErr);
619 sqlite3CloseExtensions(db);
621 db->magic = SQLITE_MAGIC_ERROR;
623 /* The temp-database schema is allocated differently from the other schema
624 ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()).
625 ** So it needs to be freed here. Todo: Why not roll the temp schema into
626 ** the same sqliteMalloc() as the one that allocates the database
629 sqlite3DbFree(db, db->aDb[1].pSchema);
630 sqlite3_mutex_leave(db->mutex);
631 db->magic = SQLITE_MAGIC_CLOSED;
632 sqlite3_mutex_free(db->mutex);
633 if( db->lookaside.bMalloced ){
634 sqlite3_free(db->lookaside.pStart);
641 ** Rollback all database files.
643 void sqlite3RollbackAll(sqlite3 *db){
646 assert( sqlite3_mutex_held(db->mutex) );
647 sqlite3BeginBenignMalloc();
648 for(i=0; i<db->nDb; i++){
649 if( db->aDb[i].pBt ){
650 if( sqlite3BtreeIsInTrans(db->aDb[i].pBt) ){
653 sqlite3BtreeRollback(db->aDb[i].pBt);
654 db->aDb[i].inTrans = 0;
657 sqlite3VtabRollback(db);
658 sqlite3EndBenignMalloc();
660 if( db->flags&SQLITE_InternChanges ){
661 sqlite3ExpirePreparedStatements(db);
662 sqlite3ResetInternalSchema(db, 0);
665 /* If one has been configured, invoke the rollback-hook callback */
666 if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){
667 db->xRollbackCallback(db->pRollbackArg);
672 ** Return a static string that describes the kind of error specified in the
675 const char *sqlite3ErrStr(int rc){
680 case SQLITE_OK: z = "not an error"; break;
681 case SQLITE_ERROR: z = "SQL logic error or missing database"; break;
682 case SQLITE_PERM: z = "access permission denied"; break;
683 case SQLITE_ABORT: z = "callback requested query abort"; break;
684 case SQLITE_BUSY: z = "database is locked"; break;
685 case SQLITE_LOCKED: z = "database table is locked"; break;
686 case SQLITE_NOMEM: z = "out of memory"; break;
687 case SQLITE_READONLY: z = "attempt to write a readonly database"; break;
688 case SQLITE_INTERRUPT: z = "interrupted"; break;
689 case SQLITE_IOERR: z = "disk I/O error"; break;
690 case SQLITE_CORRUPT: z = "database disk image is malformed"; break;
691 case SQLITE_FULL: z = "database or disk is full"; break;
692 case SQLITE_CANTOPEN: z = "unable to open database file"; break;
693 case SQLITE_EMPTY: z = "table contains no data"; break;
694 case SQLITE_SCHEMA: z = "database schema has changed"; break;
695 case SQLITE_TOOBIG: z = "String or BLOB exceeded size limit"; break;
696 case SQLITE_CONSTRAINT: z = "constraint failed"; break;
697 case SQLITE_MISMATCH: z = "datatype mismatch"; break;
698 case SQLITE_MISUSE: z = "library routine called out of sequence";break;
699 case SQLITE_NOLFS: z = "large file support is disabled"; break;
700 case SQLITE_AUTH: z = "authorization denied"; break;
701 case SQLITE_FORMAT: z = "auxiliary database format error"; break;
702 case SQLITE_RANGE: z = "bind or column index out of range"; break;
703 case SQLITE_NOTADB: z = "file is encrypted or is not a database";break;
704 default: z = "unknown error"; break;
710 ** This routine implements a busy callback that sleeps and tries
711 ** again until a timeout value is reached. The timeout value is
712 ** an integer number of milliseconds passed in as the first
715 static int sqliteDefaultBusyCallback(
716 void *ptr, /* Database connection */
717 int count /* Number of times table has been busy */
719 #if SQLITE_OS_WIN || (defined(HAVE_USLEEP) && HAVE_USLEEP)
720 static const u8 delays[] =
721 { 1, 2, 5, 10, 15, 20, 25, 25, 25, 50, 50, 100 };
722 static const u8 totals[] =
723 { 0, 1, 3, 8, 18, 33, 53, 78, 103, 128, 178, 228 };
724 # define NDELAY (sizeof(delays)/sizeof(delays[0]))
725 sqlite3 *db = (sqlite3 *)ptr;
726 int timeout = db->busyTimeout;
730 if( count < NDELAY ){
731 delay = delays[count];
732 prior = totals[count];
734 delay = delays[NDELAY-1];
735 prior = totals[NDELAY-1] + delay*(count-(NDELAY-1));
737 if( prior + delay > timeout ){
738 delay = timeout - prior;
739 if( delay<=0 ) return 0;
741 sqlite3OsSleep(db->pVfs, delay*1000);
744 sqlite3 *db = (sqlite3 *)ptr;
745 int timeout = ((sqlite3 *)ptr)->busyTimeout;
746 if( (count+1)*1000 > timeout ){
749 sqlite3OsSleep(db->pVfs, 1000000);
755 ** Invoke the given busy handler.
757 ** This routine is called when an operation failed with a lock.
758 ** If this routine returns non-zero, the lock is retried. If it
759 ** returns 0, the operation aborts with an SQLITE_BUSY error.
761 int sqlite3InvokeBusyHandler(BusyHandler *p){
763 if( NEVER(p==0) || p->xFunc==0 || p->nBusy<0 ) return 0;
764 rc = p->xFunc(p->pArg, p->nBusy);
774 ** This routine sets the busy callback for an Sqlite database to the
775 ** given callback function with the given argument.
777 SQLITE_EXPORT int sqlite3_busy_handler(
779 int (*xBusy)(void*,int),
782 sqlite3_mutex_enter(db->mutex);
783 db->busyHandler.xFunc = xBusy;
784 db->busyHandler.pArg = pArg;
785 db->busyHandler.nBusy = 0;
786 sqlite3_mutex_leave(db->mutex);
790 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK
792 ** This routine sets the progress callback for an Sqlite database to the
793 ** given callback function with the given argument. The progress callback will
794 ** be invoked every nOps opcodes.
796 SQLITE_EXPORT void sqlite3_progress_handler(
799 int (*xProgress)(void*),
802 sqlite3_mutex_enter(db->mutex);
804 db->xProgress = xProgress;
805 db->nProgressOps = nOps;
806 db->pProgressArg = pArg;
809 db->nProgressOps = 0;
810 db->pProgressArg = 0;
812 sqlite3_mutex_leave(db->mutex);
818 ** This routine installs a default busy handler that waits for the
819 ** specified number of milliseconds before returning 0.
821 SQLITE_EXPORT int sqlite3_busy_timeout(sqlite3 *db, int ms){
823 db->busyTimeout = ms;
824 sqlite3_busy_handler(db, sqliteDefaultBusyCallback, (void*)db);
826 sqlite3_busy_handler(db, 0, 0);
832 ** Cause any pending operation to stop at its earliest opportunity.
834 SQLITE_EXPORT void sqlite3_interrupt(sqlite3 *db){
835 db->u1.isInterrupted = 1;
840 ** This function is exactly the same as sqlite3_create_function(), except
841 ** that it is designed to be called by internal code. The difference is
842 ** that if a malloc() fails in sqlite3_create_function(), an error code
843 ** is returned and the mallocFailed flag cleared.
845 int sqlite3CreateFunc(
847 const char *zFunctionName,
851 void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
852 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
853 void (*xFinal)(sqlite3_context*)
858 assert( sqlite3_mutex_held(db->mutex) );
859 if( zFunctionName==0 ||
860 (xFunc && (xFinal || xStep)) ||
861 (!xFunc && (xFinal && !xStep)) ||
862 (!xFunc && (!xFinal && xStep)) ||
863 (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) ||
864 (255<(nName = sqlite3Strlen(db, zFunctionName))) ){
865 sqlite3Error(db, SQLITE_ERROR, "bad parameters");
869 #ifndef SQLITE_OMIT_UTF16
870 /* If SQLITE_UTF16 is specified as the encoding type, transform this
871 ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
872 ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
874 ** If SQLITE_ANY is specified, add three versions of the function
875 ** to the hash table.
877 if( enc==SQLITE_UTF16 ){
878 enc = SQLITE_UTF16NATIVE;
879 }else if( enc==SQLITE_ANY ){
881 rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF8,
882 pUserData, xFunc, xStep, xFinal);
884 rc = sqlite3CreateFunc(db, zFunctionName, nArg, SQLITE_UTF16LE,
885 pUserData, xFunc, xStep, xFinal);
890 enc = SQLITE_UTF16BE;
896 /* Check if an existing function is being overridden or deleted. If so,
897 ** and there are active VMs, then return SQLITE_BUSY. If a function
898 ** is being overridden/deleted but there are no active VMs, allow the
899 ** operation to continue but invalidate all precompiled statements.
901 p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 0);
902 if( p && p->iPrefEnc==enc && p->nArg==nArg ){
903 if( db->activeVdbeCnt ){
904 sqlite3Error(db, SQLITE_BUSY,
905 "Unable to delete/modify user-function due to active statements");
906 assert( !db->mallocFailed );
909 sqlite3ExpirePreparedStatements(db);
913 p = sqlite3FindFunction(db, zFunctionName, nName, nArg, enc, 1);
914 assert(p || db->mallocFailed);
921 p->xFinalize = xFinal;
922 p->pUserData = pUserData;
928 ** Create new user functions.
930 SQLITE_EXPORT int sqlite3_create_function(
932 const char *zFunctionName,
936 void (*xFunc)(sqlite3_context*,int,sqlite3_value **),
937 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
938 void (*xFinal)(sqlite3_context*)
941 sqlite3_mutex_enter(db->mutex);
942 rc = sqlite3CreateFunc(db, zFunctionName, nArg, enc, p, xFunc, xStep, xFinal);
943 rc = sqlite3ApiExit(db, rc);
944 sqlite3_mutex_leave(db->mutex);
948 #ifndef SQLITE_OMIT_UTF16
949 SQLITE_EXPORT int sqlite3_create_function16(
951 const void *zFunctionName,
955 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
956 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
957 void (*xFinal)(sqlite3_context*)
961 sqlite3_mutex_enter(db->mutex);
962 assert( !db->mallocFailed );
963 zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1);
964 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal);
965 sqlite3DbFree(db, zFunc8);
966 rc = sqlite3ApiExit(db, rc);
967 sqlite3_mutex_leave(db->mutex);
974 ** Declare that a function has been overloaded by a virtual table.
976 ** If the function already exists as a regular global function, then
977 ** this routine is a no-op. If the function does not exist, then create
978 ** a new one that always throws a run-time error.
980 ** When virtual tables intend to provide an overloaded function, they
981 ** should call this routine to make sure the global function exists.
982 ** A global function must exist in order for name resolution to work
985 SQLITE_EXPORT int sqlite3_overload_function(
990 int nName = sqlite3Strlen(db, zName);
992 sqlite3_mutex_enter(db->mutex);
993 if( sqlite3FindFunction(db, zName, nName, nArg, SQLITE_UTF8, 0)==0 ){
994 sqlite3CreateFunc(db, zName, nArg, SQLITE_UTF8,
995 0, sqlite3InvalidFunction, 0, 0);
997 rc = sqlite3ApiExit(db, SQLITE_OK);
998 sqlite3_mutex_leave(db->mutex);
1002 #ifndef SQLITE_OMIT_TRACE
1004 ** Register a trace function. The pArg from the previously registered trace
1007 ** A NULL trace function means that no tracing is executes. A non-NULL
1008 ** trace is a pointer to a function that is invoked at the start of each
1011 SQLITE_EXPORT void *sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
1013 sqlite3_mutex_enter(db->mutex);
1014 pOld = db->pTraceArg;
1015 db->xTrace = xTrace;
1016 db->pTraceArg = pArg;
1017 sqlite3_mutex_leave(db->mutex);
1021 ** Register a profile function. The pArg from the previously registered
1022 ** profile function is returned.
1024 ** A NULL profile function means that no profiling is executes. A non-NULL
1025 ** profile is a pointer to a function that is invoked at the conclusion of
1026 ** each SQL statement that is run.
1028 SQLITE_EXPORT void *sqlite3_profile(
1030 void (*xProfile)(void*,const char*,sqlite_uint64),
1034 sqlite3_mutex_enter(db->mutex);
1035 pOld = db->pProfileArg;
1036 db->xProfile = xProfile;
1037 db->pProfileArg = pArg;
1038 sqlite3_mutex_leave(db->mutex);
1041 #endif /* SQLITE_OMIT_TRACE */
1043 /*** EXPERIMENTAL ***
1045 ** Register a function to be invoked when a transaction comments.
1046 ** If the invoked function returns non-zero, then the commit becomes a
1049 SQLITE_EXPORT void *sqlite3_commit_hook(
1050 sqlite3 *db, /* Attach the hook to this database */
1051 int (*xCallback)(void*), /* Function to invoke on each commit */
1052 void *pArg /* Argument to the function */
1055 sqlite3_mutex_enter(db->mutex);
1056 pOld = db->pCommitArg;
1057 db->xCommitCallback = xCallback;
1058 db->pCommitArg = pArg;
1059 sqlite3_mutex_leave(db->mutex);
1064 ** Register a callback to be invoked each time a row is updated,
1065 ** inserted or deleted using this database connection.
1067 SQLITE_EXPORT void *sqlite3_update_hook(
1068 sqlite3 *db, /* Attach the hook to this database */
1069 void (*xCallback)(void*,int,char const *,char const *,sqlite_int64),
1070 void *pArg /* Argument to the function */
1073 sqlite3_mutex_enter(db->mutex);
1074 pRet = db->pUpdateArg;
1075 db->xUpdateCallback = xCallback;
1076 db->pUpdateArg = pArg;
1077 sqlite3_mutex_leave(db->mutex);
1082 ** Register a callback to be invoked each time a transaction is rolled
1083 ** back by this database connection.
1085 SQLITE_EXPORT void *sqlite3_rollback_hook(
1086 sqlite3 *db, /* Attach the hook to this database */
1087 void (*xCallback)(void*), /* Callback function */
1088 void *pArg /* Argument to the function */
1091 sqlite3_mutex_enter(db->mutex);
1092 pRet = db->pRollbackArg;
1093 db->xRollbackCallback = xCallback;
1094 db->pRollbackArg = pArg;
1095 sqlite3_mutex_leave(db->mutex);
1100 ** This routine is called to create a connection to a database BTree
1101 ** driver. If zFilename is the name of a file, then that file is
1102 ** opened and used. If zFilename is the magic name ":memory:" then
1103 ** the database is stored in memory (and is thus forgotten as soon as
1104 ** the connection is closed.) If zFilename is NULL then the database
1105 ** is a "virtual" database for transient use only and is deleted as
1106 ** soon as the connection is closed.
1108 ** A virtual database can be either a disk file (that is automatically
1109 ** deleted when the file is closed) or it an be held entirely in memory,
1110 ** depending on the values of the SQLITE_TEMP_STORE compile-time macro and the
1111 ** db->temp_store variable, according to the following chart:
1113 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
1114 ** ----------------- -------------- ------------------------------
1124 int sqlite3BtreeFactory(
1125 const sqlite3 *db, /* Main database when opening aux otherwise 0 */
1126 const char *zFilename, /* Name of the file containing the BTree database */
1127 int omitJournal, /* if TRUE then do not journal this file */
1128 int nCache, /* How many pages in the page cache */
1129 int vfsFlags, /* Flags passed through to vfsOpen */
1130 Btree **ppBtree /* Pointer to new Btree object written here */
1135 assert( sqlite3_mutex_held(db->mutex) );
1136 assert( ppBtree != 0);
1138 btFlags |= BTREE_OMIT_JOURNAL;
1140 if( db->flags & SQLITE_NoReadlock ){
1141 btFlags |= BTREE_NO_READLOCK;
1144 #if SQLITE_TEMP_STORE==0
1147 #ifndef SQLITE_OMIT_MEMORYDB
1148 #if SQLITE_TEMP_STORE==1
1149 if( db->temp_store==2 ) zFilename = ":memory:";
1151 #if SQLITE_TEMP_STORE==2
1152 if( db->temp_store!=1 ) zFilename = ":memory:";
1154 #if SQLITE_TEMP_STORE==3
1155 zFilename = ":memory:";
1157 #endif /* SQLITE_OMIT_MEMORYDB */
1160 if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (zFilename==0 || *zFilename==0) ){
1161 vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB;
1163 rc = sqlite3BtreeOpen(zFilename, (sqlite3 *)db, ppBtree, btFlags, vfsFlags);
1165 /* If the B-Tree was successfully opened, set the pager-cache size to the
1166 ** default value. Except, if the call to BtreeOpen() returned a handle
1167 ** open on an existing shared pager-cache, do not change the pager-cache
1170 if( rc==SQLITE_OK && 0==sqlite3BtreeSchema(*ppBtree, 0, 0) ){
1171 sqlite3BtreeSetCacheSize(*ppBtree, nCache);
1177 ** Return UTF-8 encoded English language explanation of the most recent
1180 SQLITE_EXPORT const char *sqlite3_errmsg(sqlite3 *db){
1183 return sqlite3ErrStr(SQLITE_NOMEM);
1185 if( !sqlite3SafetyCheckSickOrOk(db) ){
1186 return sqlite3ErrStr(SQLITE_MISUSE);
1188 sqlite3_mutex_enter(db->mutex);
1189 assert( !db->mallocFailed );
1190 z = (char*)sqlite3_value_text(db->pErr);
1191 assert( !db->mallocFailed );
1193 z = sqlite3ErrStr(db->errCode);
1195 sqlite3_mutex_leave(db->mutex);
1199 #ifndef SQLITE_OMIT_UTF16
1201 ** Return UTF-16 encoded English language explanation of the most recent
1204 SQLITE_EXPORT const void *sqlite3_errmsg16(sqlite3 *db){
1205 /* Because all the characters in the string are in the unicode
1206 ** range 0x00-0xFF, if we pad the big-endian string with a
1207 ** zero byte, we can obtain the little-endian string with
1210 static const char outOfMemBe[] = {
1211 0, 'o', 0, 'u', 0, 't', 0, ' ',
1212 0, 'o', 0, 'f', 0, ' ',
1213 0, 'm', 0, 'e', 0, 'm', 0, 'o', 0, 'r', 0, 'y', 0, 0, 0
1215 static const char misuseBe [] = {
1216 0, 'l', 0, 'i', 0, 'b', 0, 'r', 0, 'a', 0, 'r', 0, 'y', 0, ' ',
1217 0, 'r', 0, 'o', 0, 'u', 0, 't', 0, 'i', 0, 'n', 0, 'e', 0, ' ',
1218 0, 'c', 0, 'a', 0, 'l', 0, 'l', 0, 'e', 0, 'd', 0, ' ',
1219 0, 'o', 0, 'u', 0, 't', 0, ' ',
1220 0, 'o', 0, 'f', 0, ' ',
1221 0, 's', 0, 'e', 0, 'q', 0, 'u', 0, 'e', 0, 'n', 0, 'c', 0, 'e', 0, 0, 0
1226 return (void *)(&outOfMemBe[SQLITE_UTF16NATIVE==SQLITE_UTF16LE?1:0]);
1228 if( !sqlite3SafetyCheckSickOrOk(db) ){
1229 return (void *)(&misuseBe[SQLITE_UTF16NATIVE==SQLITE_UTF16LE?1:0]);
1231 sqlite3_mutex_enter(db->mutex);
1232 assert( !db->mallocFailed );
1233 z = sqlite3_value_text16(db->pErr);
1235 sqlite3ValueSetStr(db->pErr, -1, sqlite3ErrStr(db->errCode),
1236 SQLITE_UTF8, SQLITE_STATIC);
1237 z = sqlite3_value_text16(db->pErr);
1239 /* A malloc() may have failed within the call to sqlite3_value_text16()
1240 ** above. If this is the case, then the db->mallocFailed flag needs to
1241 ** be cleared before returning. Do this directly, instead of via
1242 ** sqlite3ApiExit(), to avoid setting the database handle error message.
1244 db->mallocFailed = 0;
1245 sqlite3_mutex_leave(db->mutex);
1248 #endif /* SQLITE_OMIT_UTF16 */
1251 ** Return the most recent error code generated by an SQLite routine. If NULL is
1252 ** passed to this function, we assume a malloc() failed during sqlite3_open().
1254 SQLITE_EXPORT int sqlite3_errcode(sqlite3 *db){
1255 if( db && !sqlite3SafetyCheckSickOrOk(db) ){
1256 return SQLITE_MISUSE;
1258 if( !db || db->mallocFailed ){
1259 return SQLITE_NOMEM;
1261 return db->errCode & db->errMask;
1265 ** Create a new collating function for database "db". The name is zName
1266 ** and the encoding is enc.
1268 static int createCollation(
1273 int(*xCompare)(void*,int,const void*,int,const void*),
1280 assert( sqlite3_mutex_held(db->mutex) );
1282 /* If SQLITE_UTF16 is specified as the encoding type, transform this
1283 ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the
1284 ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally.
1286 enc2 = enc & ~SQLITE_UTF16_ALIGNED;
1287 if( enc2==SQLITE_UTF16 ){
1288 enc2 = SQLITE_UTF16NATIVE;
1291 return SQLITE_MISUSE;
1294 /* Check if this call is removing or replacing an existing collation
1295 ** sequence. If so, and there are active VMs, return busy. If there
1296 ** are no active VMs, invalidate any pre-compiled statements.
1298 nName = sqlite3Strlen(db, zName);
1299 pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 0);
1300 if( pColl && pColl->xCmp ){
1301 if( db->activeVdbeCnt ){
1302 sqlite3Error(db, SQLITE_BUSY,
1303 "Unable to delete/modify collation sequence due to active statements");
1306 sqlite3ExpirePreparedStatements(db);
1308 /* If collation sequence pColl was created directly by a call to
1309 ** sqlite3_create_collation, and not generated by synthCollSeq(),
1310 ** then any copies made by synthCollSeq() need to be invalidated.
1311 ** Also, collation destructor - CollSeq.xDel() - function may need
1314 if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){
1315 CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName, nName);
1318 CollSeq *p = &aColl[j];
1319 if( p->enc==pColl->enc ){
1329 pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, nName, 1);
1331 pColl->xCmp = xCompare;
1332 pColl->pUser = pCtx;
1334 pColl->enc = enc2 | (enc & SQLITE_UTF16_ALIGNED);
1336 sqlite3Error(db, SQLITE_OK, 0);
1342 ** This array defines hard upper bounds on limit values. The
1343 ** initializer must be kept in sync with the SQLITE_LIMIT_*
1344 ** #defines in sqlite3.h.
1346 static const int aHardLimit[] = {
1348 SQLITE_MAX_SQL_LENGTH,
1350 SQLITE_MAX_EXPR_DEPTH,
1351 SQLITE_MAX_COMPOUND_SELECT,
1353 SQLITE_MAX_FUNCTION_ARG,
1354 SQLITE_MAX_ATTACHED,
1355 SQLITE_MAX_LIKE_PATTERN_LENGTH,
1356 SQLITE_MAX_VARIABLE_NUMBER,
1360 ** Make sure the hard limits are set to reasonable values
1362 #if SQLITE_MAX_LENGTH<100
1363 # error SQLITE_MAX_LENGTH must be at least 100
1365 #if SQLITE_MAX_SQL_LENGTH<100
1366 # error SQLITE_MAX_SQL_LENGTH must be at least 100
1368 #if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH
1369 # error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH
1371 #if SQLITE_MAX_COMPOUND_SELECT<2
1372 # error SQLITE_MAX_COMPOUND_SELECT must be at least 2
1374 #if SQLITE_MAX_VDBE_OP<40
1375 # error SQLITE_MAX_VDBE_OP must be at least 40
1377 #if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>127
1378 # error SQLITE_MAX_FUNCTION_ARG must be between 0 and 127
1380 #if SQLITE_MAX_ATTACHED<0 || SQLITE_MAX_ATTACHED>30
1381 # error SQLITE_MAX_ATTACHED must be between 0 and 30
1383 #if SQLITE_MAX_LIKE_PATTERN_LENGTH<1
1384 # error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1
1386 #if SQLITE_MAX_VARIABLE_NUMBER<1
1387 # error SQLITE_MAX_VARIABLE_NUMBER must be at least 1
1389 #if SQLITE_MAX_COLUMN>32767
1390 # error SQLITE_MAX_COLUMN must not exceed 32767
1395 ** Change the value of a limit. Report the old value.
1396 ** If an invalid limit index is supplied, report -1.
1397 ** Make no changes but still report the old value if the
1398 ** new limit is negative.
1400 ** A new lower limit does not shrink existing constructs.
1401 ** It merely prevents new constructs that exceed the limit
1404 SQLITE_EXPORT int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){
1406 if( limitId<0 || limitId>=SQLITE_N_LIMIT ){
1409 oldLimit = db->aLimit[limitId];
1411 if( newLimit>aHardLimit[limitId] ){
1412 newLimit = aHardLimit[limitId];
1414 db->aLimit[limitId] = newLimit;
1420 ** This routine does the work of opening a database on behalf of
1421 ** sqlite3_open() and sqlite3_open16(). The database filename "zFilename"
1422 ** is UTF-8 encoded.
1424 static int openDatabase(
1425 const char *zFilename, /* Database filename UTF-8 encoded */
1426 sqlite3 **ppDb, /* OUT: Returned database handle */
1427 unsigned flags, /* Operational flags */
1428 const char *zVfs /* Name of the VFS to use */
1435 #ifndef SQLITE_OMIT_AUTOINIT
1436 rc = sqlite3_initialize();
1440 if( sqlite3GlobalConfig.bCoreMutex==0 ){
1442 }else if( flags & SQLITE_OPEN_NOMUTEX ){
1444 }else if( flags & SQLITE_OPEN_FULLMUTEX ){
1447 isThreadsafe = sqlite3GlobalConfig.bFullMutex;
1450 /* Remove harmful bits from the flags parameter */
1451 flags &= ~( SQLITE_OPEN_DELETEONCLOSE |
1452 SQLITE_OPEN_MAIN_DB |
1453 SQLITE_OPEN_TEMP_DB |
1454 SQLITE_OPEN_TRANSIENT_DB |
1455 SQLITE_OPEN_MAIN_JOURNAL |
1456 SQLITE_OPEN_TEMP_JOURNAL |
1457 SQLITE_OPEN_SUBJOURNAL |
1458 SQLITE_OPEN_MASTER_JOURNAL |
1459 SQLITE_OPEN_NOMUTEX |
1460 SQLITE_OPEN_FULLMUTEX
1463 /* Allocate the sqlite data structure */
1464 db = sqlite3MallocZero( sizeof(sqlite3) );
1465 if( db==0 ) goto opendb_out;
1467 db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE);
1474 sqlite3_mutex_enter(db->mutex);
1476 db->priorNewRowid = 0;
1478 db->magic = SQLITE_MAGIC_BUSY;
1479 db->aDb = db->aDbStatic;
1481 assert( sizeof(db->aLimit)==sizeof(aHardLimit) );
1482 memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit));
1484 db->nextAutovac = -1;
1485 db->nextPagesize = 0;
1486 db->flags |= SQLITE_ShortColNames
1487 #if SQLITE_DEFAULT_FILE_FORMAT<4
1488 | SQLITE_LegacyFileFmt
1490 #ifdef SQLITE_ENABLE_LOAD_EXTENSION
1491 | SQLITE_LoadExtension
1494 sqlite3HashInit(&db->aCollSeq, SQLITE_HASH_STRING, 0);
1495 #ifndef SQLITE_OMIT_VIRTUALTABLE
1496 sqlite3HashInit(&db->aModule, SQLITE_HASH_STRING, 0);
1499 db->pVfs = sqlite3_vfs_find(zVfs);
1502 sqlite3Error(db, rc, "no such vfs: %s", zVfs);
1506 /* Add the default collation sequence BINARY. BINARY works for both UTF-8
1507 ** and UTF-16, so add a version for each to avoid any unnecessary
1508 ** conversions. The only error that can occur here is a malloc() failure.
1510 createCollation(db, "BINARY", SQLITE_UTF8, 0, binCollFunc, 0);
1511 createCollation(db, "BINARY", SQLITE_UTF16BE, 0, binCollFunc, 0);
1512 createCollation(db, "BINARY", SQLITE_UTF16LE, 0, binCollFunc, 0);
1513 createCollation(db, "RTRIM", SQLITE_UTF8, (void*)1, binCollFunc, 0);
1514 if( db->mallocFailed ){
1517 db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 6, 0);
1518 assert( db->pDfltColl!=0 );
1520 /* Also add a UTF-8 case-insensitive collation sequence. */
1521 createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0);
1523 /* Set flags on the built-in collating sequences */
1524 db->pDfltColl->type = SQLITE_COLL_BINARY;
1525 pColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "NOCASE", 6, 0);
1527 pColl->type = SQLITE_COLL_NOCASE;
1530 /* Open the backend database driver */
1531 db->openFlags = flags;
1532 rc = sqlite3BtreeFactory(db, zFilename, 0, SQLITE_DEFAULT_CACHE_SIZE,
1533 flags | SQLITE_OPEN_MAIN_DB,
1535 if( rc!=SQLITE_OK ){
1536 if( rc==SQLITE_IOERR_NOMEM ){
1539 sqlite3Error(db, rc, 0);
1542 db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt);
1543 db->aDb[1].pSchema = sqlite3SchemaGet(db, 0);
1546 /* The default safety_level for the main database is 'full'; for the temp
1547 ** database it is 'NONE'. This matches the pager layer defaults.
1549 db->aDb[0].zName = "main";
1550 db->aDb[0].safety_level = 3;
1551 #ifndef SQLITE_OMIT_TEMPDB
1552 db->aDb[1].zName = "temp";
1553 db->aDb[1].safety_level = 1;
1556 db->magic = SQLITE_MAGIC_OPEN;
1557 if( db->mallocFailed ){
1561 /* Register all built-in functions, but do not attempt to read the
1562 ** database schema yet. This is delayed until the first time the database
1565 sqlite3Error(db, SQLITE_OK, 0);
1566 sqlite3RegisterBuiltinFunctions(db);
1568 /* Load automatic extensions - extensions that have been registered
1569 ** using the sqlite3_automatic_extension() API.
1571 (void)sqlite3AutoLoadExtensions(db);
1572 if( sqlite3_errcode(db)!=SQLITE_OK ){
1576 #ifdef SQLITE_ENABLE_FTS1
1577 if( !db->mallocFailed ){
1578 extern int sqlite3Fts1Init(sqlite3*);
1579 rc = sqlite3Fts1Init(db);
1583 #ifdef SQLITE_ENABLE_FTS2
1584 if( !db->mallocFailed && rc==SQLITE_OK ){
1585 extern int sqlite3Fts2Init(sqlite3*);
1586 rc = sqlite3Fts2Init(db);
1590 #ifdef SQLITE_ENABLE_FTS3
1591 if( !db->mallocFailed && rc==SQLITE_OK ){
1592 rc = sqlite3Fts3Init(db);
1596 #ifdef SQLITE_ENABLE_ICU
1597 if( !db->mallocFailed && rc==SQLITE_OK ){
1598 rc = sqlite3IcuInit(db);
1602 #ifdef SQLITE_ENABLE_RTREE
1603 if( !db->mallocFailed && rc==SQLITE_OK){
1604 rc = sqlite3RtreeInit(db);
1608 sqlite3Error(db, rc, 0);
1610 /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking
1611 ** mode. -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking
1612 ** mode. Doing nothing at all also makes NORMAL the default.
1614 #ifdef SQLITE_DEFAULT_LOCKING_MODE
1615 db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE;
1616 sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt),
1617 SQLITE_DEFAULT_LOCKING_MODE);
1620 /* Enable the lookaside-malloc subsystem */
1621 setupLookaside(db, 0, sqlite3GlobalConfig.szLookaside, 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.
1642 SQLITE_EXPORT int sqlite3_open(
1643 const char *zFilename,
1646 return openDatabase(zFilename, ppDb,
1647 SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
1649 SQLITE_EXPORT 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.
1662 SQLITE_EXPORT int sqlite3_open16(
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 SQLITE_EXPORT 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 SQLITE_EXPORT 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 SQLITE_EXPORT 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 SQLITE_EXPORT 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 SQLITE_EXPORT 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
1799 ** This function is now an anachronism. It used to be used to recover from a
1800 ** malloc() failure, but SQLite now does this automatically.
1802 SQLITE_EXPORT int sqlite3_global_recover(void){
1808 ** Test to see whether or not the database connection is in autocommit
1809 ** mode. Return TRUE if it is and FALSE if not. Autocommit mode is on
1810 ** by default. Autocommit is disabled by a BEGIN statement and reenabled
1811 ** by the next COMMIT or ROLLBACK.
1813 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
1815 SQLITE_EXPORT int sqlite3_get_autocommit(sqlite3 *db){
1816 return db->autoCommit;
1821 ** The following routine is subtituted for constant SQLITE_CORRUPT in
1822 ** debugging builds. This provides a way to set a breakpoint for when
1823 ** corruption is first detected.
1825 int sqlite3Corrupt(void){
1826 return SQLITE_CORRUPT;
1831 ** This is a convenience routine that makes sure that all thread-specific
1832 ** data for this thread has been deallocated.
1834 ** SQLite no longer uses thread-specific data so this routine is now a
1835 ** no-op. It is retained for historical compatibility.
1837 SQLITE_EXPORT void sqlite3_thread_cleanup(void){
1841 ** Return meta information about a specific column of a database table.
1842 ** See comment in sqlite3.h (sqlite.h.in) for details.
1844 #ifdef SQLITE_ENABLE_COLUMN_METADATA
1845 int sqlite3_table_column_metadata(
1846 sqlite3 *db, /* Connection handle */
1847 const char *zDbName, /* Database name or NULL */
1848 const char *zTableName, /* Table name */
1849 const char *zColumnName, /* Column name */
1850 char const **pzDataType, /* OUTPUT: Declared data type */
1851 char const **pzCollSeq, /* OUTPUT: Collation sequence name */
1852 int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */
1853 int *pPrimaryKey, /* OUTPUT: True if column part of PK */
1854 int *pAutoinc /* OUTPUT: True if column is auto-increment */
1862 char const *zDataType = 0;
1863 char const *zCollSeq = 0;
1868 /* Ensure the database schema has been loaded */
1869 sqlite3_mutex_enter(db->mutex);
1870 (void)sqlite3SafetyOn(db);
1871 sqlite3BtreeEnterAll(db);
1872 rc = sqlite3Init(db, &zErrMsg);
1873 sqlite3BtreeLeaveAll(db);
1874 if( SQLITE_OK!=rc ){
1878 /* Locate the table in question */
1879 pTab = sqlite3FindTable(db, zTableName, zDbName);
1880 if( !pTab || pTab->pSelect ){
1885 /* Find the column for which info is requested */
1886 if( sqlite3IsRowid(zColumnName) ){
1889 pCol = &pTab->aCol[iCol];
1892 for(iCol=0; iCol<pTab->nCol; iCol++){
1893 pCol = &pTab->aCol[iCol];
1894 if( 0==sqlite3StrICmp(pCol->zName, zColumnName) ){
1898 if( iCol==pTab->nCol ){
1904 /* The following block stores the meta information that will be returned
1905 ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey
1906 ** and autoinc. At this point there are two possibilities:
1908 ** 1. The specified column name was rowid", "oid" or "_rowid_"
1909 ** and there is no explicitly declared IPK column.
1911 ** 2. The table is not a view and the column name identified an
1912 ** explicitly declared column. Copy meta information from *pCol.
1915 zDataType = pCol->zType;
1916 zCollSeq = pCol->zColl;
1917 notnull = pCol->notNull!=0;
1918 primarykey = pCol->isPrimKey!=0;
1919 autoinc = pTab->iPKey==iCol && (pTab->tabFlags & TF_Autoincrement)!=0;
1921 zDataType = "INTEGER";
1925 zCollSeq = "BINARY";
1929 (void)sqlite3SafetyOff(db);
1931 /* Whether the function call succeeded or failed, set the output parameters
1932 ** to whatever their local counterparts contain. If an error did occur,
1933 ** this has the effect of zeroing all output parameters.
1935 if( pzDataType ) *pzDataType = zDataType;
1936 if( pzCollSeq ) *pzCollSeq = zCollSeq;
1937 if( pNotNull ) *pNotNull = notnull;
1938 if( pPrimaryKey ) *pPrimaryKey = primarykey;
1939 if( pAutoinc ) *pAutoinc = autoinc;
1941 if( SQLITE_OK==rc && !pTab ){
1942 sqlite3DbFree(db, zErrMsg);
1943 zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName,
1947 sqlite3Error(db, rc, (zErrMsg?"%s":0), zErrMsg);
1948 sqlite3DbFree(db, zErrMsg);
1949 rc = sqlite3ApiExit(db, rc);
1950 sqlite3_mutex_leave(db->mutex);
1956 ** Sleep for a little while. Return the amount of time slept.
1958 SQLITE_EXPORT int sqlite3_sleep(int ms){
1961 pVfs = sqlite3_vfs_find(0);
1962 if( pVfs==0 ) return 0;
1964 /* This function works in milliseconds, but the underlying OsSleep()
1965 ** API uses microseconds. Hence the 1000's.
1967 rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000);
1972 ** Enable or disable the extended result codes.
1974 SQLITE_EXPORT int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
1975 sqlite3_mutex_enter(db->mutex);
1976 db->errMask = onoff ? 0xffffffff : 0xff;
1977 sqlite3_mutex_leave(db->mutex);
1982 ** Invoke the xFileControl method on a particular database.
1984 SQLITE_EXPORT int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
1985 int rc = SQLITE_ERROR;
1987 sqlite3_mutex_enter(db->mutex);
1991 for(iDb=0; iDb<db->nDb; iDb++){
1992 if( strcmp(db->aDb[iDb].zName, zDbName)==0 ) break;
1996 Btree *pBtree = db->aDb[iDb].pBt;
2000 sqlite3BtreeEnter(pBtree);
2001 pPager = sqlite3BtreePager(pBtree);
2002 assert( pPager!=0 );
2003 fd = sqlite3PagerFile(pPager);
2006 rc = sqlite3OsFileControl(fd, op, pArg);
2008 sqlite3BtreeLeave(pBtree);
2011 sqlite3_mutex_leave(db->mutex);
2016 ** Interface to the testing logic.
2018 SQLITE_EXPORT int sqlite3_test_control(int op, ...){
2020 #ifndef SQLITE_OMIT_BUILTIN_TEST
2026 ** Save the current state of the PRNG.
2028 case SQLITE_TESTCTRL_PRNG_SAVE: {
2029 sqlite3PrngSaveState();
2034 ** Restore the state of the PRNG to the last state saved using
2035 ** PRNG_SAVE. If PRNG_SAVE has never before been called, then
2036 ** this verb acts like PRNG_RESET.
2038 case SQLITE_TESTCTRL_PRNG_RESTORE: {
2039 sqlite3PrngRestoreState();
2044 ** Reset the PRNG back to its uninitialized state. The next call
2045 ** to sqlite3_randomness() will reseed the PRNG using a single call
2046 ** to the xRandomness method of the default VFS.
2048 case SQLITE_TESTCTRL_PRNG_RESET: {
2049 sqlite3PrngResetState();
2054 ** sqlite3_test_control(BITVEC_TEST, size, program)
2056 ** Run a test against a Bitvec object of size. The program argument
2057 ** is an array of integers that defines the test. Return -1 on a
2058 ** memory allocation error, 0 on success, or non-zero for an error.
2059 ** See the sqlite3BitvecBuiltinTest() for additional information.
2061 case SQLITE_TESTCTRL_BITVEC_TEST: {
2062 int sz = va_arg(ap, int);
2063 int *aProg = va_arg(ap, int*);
2064 rc = sqlite3BitvecBuiltinTest(sz, aProg);
2069 ** sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd)
2071 ** Register hooks to call to indicate which malloc() failures
2074 case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: {
2075 typedef void (*void_function)(void);
2076 void_function xBenignBegin;
2077 void_function xBenignEnd;
2078 xBenignBegin = va_arg(ap, void_function);
2079 xBenignEnd = va_arg(ap, void_function);
2080 sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd);
2085 #endif /* SQLITE_OMIT_BUILTIN_TEST */