Update contrib.
4 ** Portions Copyright (c) 2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
6 ** The author disclaims copyright to this source code. In place of
7 ** a legal notice, here is a blessing:
9 ** May you do good and not evil.
10 ** May you find forgiveness for yourself and forgive others.
11 ** May you share freely, never taking more than you give.
13 *************************************************************************
14 ** A TCL Interface to SQLite. Append this file to sqlite3.c and
15 ** compile the whole thing to build a TCL-enabled version of SQLite.
17 ** $Id: tclsqlite.c,v 1.226 2008/09/23 10:12:15 drh Exp $
23 ** Some additional include files are needed if this file is not
24 ** appended to the amalgamation.
26 #ifndef SQLITE_AMALGAMATION
27 # include "sqliteInt.h"
35 int CopyTestFiles(void);
36 int DeleteTestFiles(void);
37 int PrintText(void*, Tcl_Interp*, int objc, Tcl_Obj* const* objv);
38 void PrintS(const char* aText);
42 * Windows needs to know which symbols to export. Unix does not.
43 * BUILD_sqlite should be undefined for Unix.
46 #undef TCL_STORAGE_CLASS
47 #define TCL_STORAGE_CLASS DLLEXPORT
48 #endif /* BUILD_sqlite */
50 #define NUM_PREPARED_STMTS 10
51 #define MAX_PREPARED_STMTS 100
54 ** If TCL uses UTF-8 and SQLite is configured to use iso8859, then we
55 ** have to do a translation when going between the two. Set the
56 ** UTF_TRANSLATION_NEEDED macro to indicate that we need to do
59 #if defined(TCL_UTF_MAX) && !defined(SQLITE_UTF8)
60 # define UTF_TRANSLATION_NEEDED 1
64 ** New SQL functions can be created as TCL scripts. Each such function
65 ** is described by an instance of the following structure.
67 typedef struct SqlFunc SqlFunc;
69 Tcl_Interp *interp; /* The TCL interpret to execute the function */
70 Tcl_Obj *pScript; /* The Tcl_Obj representation of the script */
71 int useEvalObjv; /* True if it is safe to use Tcl_EvalObjv */
72 char *zName; /* Name of this function */
73 SqlFunc *pNext; /* Next function on the list of them all */
77 ** New collation sequences function can be created as TCL scripts. Each such
78 ** function is described by an instance of the following structure.
80 typedef struct SqlCollate SqlCollate;
82 Tcl_Interp *interp; /* The TCL interpret to execute the function */
83 char *zScript; /* The script to be run */
84 SqlCollate *pNext; /* Next function on the list of them all */
88 ** Prepared statements are cached for faster execution. Each prepared
89 ** statement is described by an instance of the following structure.
91 typedef struct SqlPreparedStmt SqlPreparedStmt;
92 struct SqlPreparedStmt {
93 SqlPreparedStmt *pNext; /* Next in linked list */
94 SqlPreparedStmt *pPrev; /* Previous on the list */
95 sqlite3_stmt *pStmt; /* The prepared statement */
96 int nSql; /* chars in zSql[] */
97 const char *zSql; /* Text of the SQL statement */
100 typedef struct IncrblobChannel IncrblobChannel;
103 ** There is one instance of this structure for each SQLite database
104 ** that has been opened by the SQLite TCL interface.
106 typedef struct SqliteDb SqliteDb;
108 sqlite3 *db; /* The "real" database structure. MUST BE FIRST */
109 Tcl_Interp *interp; /* The interpreter used for this database */
110 char *zBusy; /* The busy callback routine */
111 char *zCommit; /* The commit hook callback routine */
112 char *zTrace; /* The trace callback routine */
113 char *zProfile; /* The profile callback routine */
114 char *zProgress; /* The progress callback routine */
115 char *zAuth; /* The authorization callback routine */
116 int disableAuth; /* Disable the authorizer if it exists */
117 char *zNull; /* Text to substitute for an SQL NULL value */
118 SqlFunc *pFunc; /* List of SQL functions */
119 Tcl_Obj *pUpdateHook; /* Update hook script (if any) */
120 Tcl_Obj *pRollbackHook; /* Rollback hook script (if any) */
121 SqlCollate *pCollate; /* List of SQL collation functions */
122 int rc; /* Return code of most recent sqlite3_exec() */
123 Tcl_Obj *pCollateNeeded; /* Collation needed script */
124 SqlPreparedStmt *stmtList; /* List of prepared statements*/
125 SqlPreparedStmt *stmtLast; /* Last statement in the list */
126 int maxStmt; /* The next maximum number of stmtList */
127 int nStmt; /* Number of statements in stmtList */
128 IncrblobChannel *pIncrblob;/* Linked list of open incrblob channels */
131 struct IncrblobChannel {
132 sqlite3_blob *pBlob; /* sqlite3 blob handle */
133 SqliteDb *pDb; /* Associated database connection */
134 int iSeek; /* Current seek offset */
135 Tcl_Channel channel; /* Channel identifier */
136 IncrblobChannel *pNext; /* Linked list of all open incrblob channels */
137 IncrblobChannel *pPrev; /* Linked list of all open incrblob channels */
140 #ifndef SQLITE_OMIT_INCRBLOB
142 ** Close all incrblob channels opened using database connection pDb.
143 ** This is called when shutting down the database connection.
145 static void closeIncrblobChannels(SqliteDb *pDb){
147 IncrblobChannel *pNext;
149 for(p=pDb->pIncrblob; p; p=pNext){
152 /* Note: Calling unregister here call Tcl_Close on the incrblob channel,
153 ** which deletes the IncrblobChannel structure at *p. So do not
154 ** call Tcl_Free() here.
156 Tcl_UnregisterChannel(pDb->interp, p->channel);
161 ** Close an incremental blob channel.
163 static int incrblobClose(ClientData instanceData, Tcl_Interp *interp){
164 IncrblobChannel *p = (IncrblobChannel *)instanceData;
165 int rc = sqlite3_blob_close(p->pBlob);
166 sqlite3 *db = p->pDb->db;
168 /* Remove the channel from the SqliteDb.pIncrblob list. */
170 p->pNext->pPrev = p->pPrev;
173 p->pPrev->pNext = p->pNext;
175 if( p->pDb->pIncrblob==p ){
176 p->pDb->pIncrblob = p->pNext;
179 /* Free the IncrblobChannel structure */
183 Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE);
190 ** Read data from an incremental blob channel.
192 static int incrblobInput(
193 ClientData instanceData,
198 IncrblobChannel *p = (IncrblobChannel *)instanceData;
199 int nRead = bufSize; /* Number of bytes to read */
200 int nBlob; /* Total size of the blob */
201 int rc; /* sqlite error code */
203 nBlob = sqlite3_blob_bytes(p->pBlob);
204 if( (p->iSeek+nRead)>nBlob ){
205 nRead = nBlob-p->iSeek;
211 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
222 ** Write data to an incremental blob channel.
224 static int incrblobOutput(
225 ClientData instanceData,
230 IncrblobChannel *p = (IncrblobChannel *)instanceData;
231 int nWrite = toWrite; /* Number of bytes to write */
232 int nBlob; /* Total size of the blob */
233 int rc; /* sqlite error code */
235 nBlob = sqlite3_blob_bytes(p->pBlob);
236 if( (p->iSeek+nWrite)>nBlob ){
237 *errorCodePtr = EINVAL;
244 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek);
255 ** Seek an incremental blob channel.
257 static int incrblobSeek(
258 ClientData instanceData,
263 IncrblobChannel *p = (IncrblobChannel *)instanceData;
273 p->iSeek = sqlite3_blob_bytes(p->pBlob) + offset;
276 default: assert(0); /* Bad seekMode */
283 static void incrblobWatch(ClientData instanceData, int mode){
286 static int incrblobHandle(ClientData instanceData, int dir, ClientData *hPtr){
290 static Tcl_ChannelType IncrblobChannelType = {
291 "incrblob", /* typeName */
292 TCL_CHANNEL_VERSION_2, /* version */
293 incrblobClose, /* closeProc */
294 incrblobInput, /* inputProc */
295 incrblobOutput, /* outputProc */
296 incrblobSeek, /* seekProc */
297 0, /* setOptionProc */
298 0, /* getOptionProc */
299 incrblobWatch, /* watchProc (this is a no-op) */
300 incrblobHandle, /* getHandleProc (always returns error) */
302 0, /* blockModeProc */
305 0, /* wideSeekProc */
309 ** Create a new incrblob channel.
311 static int createIncrblobChannel(
321 sqlite3 *db = pDb->db;
324 int flags = TCL_READABLE|(isReadonly ? 0 : TCL_WRITABLE);
326 /* This variable is used to name the channels: "incrblob_[incr count]" */
327 static int count = 0;
330 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob);
332 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
336 p = (IncrblobChannel *)Tcl_Alloc(sizeof(IncrblobChannel));
340 sqlite3_snprintf(sizeof(zChannel), zChannel, "incrblob_%d", ++count);
341 p->channel = Tcl_CreateChannel(&IncrblobChannelType, zChannel, p, flags);
342 Tcl_RegisterChannel(interp, p->channel);
344 /* Link the new channel into the SqliteDb.pIncrblob list. */
345 p->pNext = pDb->pIncrblob;
353 Tcl_SetResult(interp, (char *)Tcl_GetChannelName(p->channel), TCL_VOLATILE);
356 #else /* else clause for "#ifndef SQLITE_OMIT_INCRBLOB" */
357 #define closeIncrblobChannels(pDb)
361 ** Look at the script prefix in pCmd. We will be executing this script
362 ** after first appending one or more arguments. This routine analyzes
363 ** the script to see if it is safe to use Tcl_EvalObjv() on the script
364 ** rather than the more general Tcl_EvalEx(). Tcl_EvalObjv() is much
367 ** Scripts that are safe to use with Tcl_EvalObjv() consists of a
368 ** command name followed by zero or more arguments with no [...] or $
369 ** or {...} or ; to be seen anywhere. Most callback scripts consist
370 ** of just a single procedure name and they meet this requirement.
372 static int safeToUseEvalObjv(Tcl_Interp *interp, Tcl_Obj *pCmd){
373 /* We could try to do something with Tcl_Parse(). But we will instead
374 ** just do a search for forbidden characters. If any of the forbidden
375 ** characters appear in pCmd, we will report the string as unsafe.
379 z = Tcl_GetStringFromObj(pCmd, &n);
382 if( c=='$' || c=='[' || c==';' ) return 0;
388 ** Find an SqlFunc structure with the given name. Or create a new
389 ** one if an existing one cannot be found. Return a pointer to the
392 static SqlFunc *findSqlFunc(SqliteDb *pDb, const char *zName){
395 pNew = (SqlFunc*)Tcl_Alloc( sizeof(*pNew) + strlen(zName) + 1 );
396 pNew->zName = (char*)&pNew[1];
397 for(i=0; zName[i]; i++){ pNew->zName[i] = tolower(zName[i]); }
399 for(p=pDb->pFunc; p; p=p->pNext){
400 if( strcmp(p->zName, pNew->zName)==0 ){
401 Tcl_Free((char*)pNew);
405 pNew->interp = pDb->interp;
407 pNew->pNext = pDb->pFunc;
413 ** Finalize and free a list of prepared statements
415 static void flushStmtCache( SqliteDb *pDb ){
416 SqlPreparedStmt *pPreStmt;
418 while( pDb->stmtList ){
419 sqlite3_finalize( pDb->stmtList->pStmt );
420 pPreStmt = pDb->stmtList;
421 pDb->stmtList = pDb->stmtList->pNext;
422 Tcl_Free( (char*)pPreStmt );
429 ** TCL calls this procedure when an sqlite3 database command is
432 static void DbDeleteCmd(void *db){
433 SqliteDb *pDb = (SqliteDb*)db;
435 closeIncrblobChannels(pDb);
436 sqlite3_close(pDb->db);
438 SqlFunc *pFunc = pDb->pFunc;
439 pDb->pFunc = pFunc->pNext;
440 Tcl_DecrRefCount(pFunc->pScript);
441 Tcl_Free((char*)pFunc);
443 while( pDb->pCollate ){
444 SqlCollate *pCollate = pDb->pCollate;
445 pDb->pCollate = pCollate->pNext;
446 Tcl_Free((char*)pCollate);
449 Tcl_Free(pDb->zBusy);
452 Tcl_Free(pDb->zTrace);
455 Tcl_Free(pDb->zProfile);
458 Tcl_Free(pDb->zAuth);
461 Tcl_Free(pDb->zNull);
463 if( pDb->pUpdateHook ){
464 Tcl_DecrRefCount(pDb->pUpdateHook);
466 if( pDb->pRollbackHook ){
467 Tcl_DecrRefCount(pDb->pRollbackHook);
469 if( pDb->pCollateNeeded ){
470 Tcl_DecrRefCount(pDb->pCollateNeeded);
472 Tcl_Free((char*)pDb);
476 ** This routine is called when a database file is locked while trying
479 static int DbBusyHandler(void *cd, int nTries){
480 SqliteDb *pDb = (SqliteDb*)cd;
484 sqlite3_snprintf(sizeof(zVal), zVal, "%d", nTries);
485 rc = Tcl_VarEval(pDb->interp, pDb->zBusy, " ", zVal, (char*)0);
486 if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
492 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK
494 ** This routine is invoked as the 'progress callback' for the database.
496 static int DbProgressHandler(void *cd){
497 SqliteDb *pDb = (SqliteDb*)cd;
500 assert( pDb->zProgress );
501 rc = Tcl_Eval(pDb->interp, pDb->zProgress);
502 if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
509 #ifndef SQLITE_OMIT_TRACE
511 ** This routine is called by the SQLite trace handler whenever a new
512 ** block of SQL is executed. The TCL script in pDb->zTrace is executed.
514 static void DbTraceHandler(void *cd, const char *zSql){
515 SqliteDb *pDb = (SqliteDb*)cd;
518 Tcl_DStringInit(&str);
519 Tcl_DStringAppend(&str, pDb->zTrace, -1);
520 Tcl_DStringAppendElement(&str, zSql);
521 Tcl_Eval(pDb->interp, Tcl_DStringValue(&str));
522 Tcl_DStringFree(&str);
523 Tcl_ResetResult(pDb->interp);
527 #ifndef SQLITE_OMIT_TRACE
529 ** This routine is called by the SQLite profile handler after a statement
530 ** SQL has executed. The TCL script in pDb->zProfile is evaluated.
532 static void DbProfileHandler(void *cd, const char *zSql, sqlite_uint64 tm){
533 SqliteDb *pDb = (SqliteDb*)cd;
537 sqlite3_snprintf(sizeof(zTm)-1, zTm, "%lld", tm);
538 Tcl_DStringInit(&str);
539 Tcl_DStringAppend(&str, pDb->zProfile, -1);
540 Tcl_DStringAppendElement(&str, zSql);
541 Tcl_DStringAppendElement(&str, zTm);
542 Tcl_Eval(pDb->interp, Tcl_DStringValue(&str));
543 Tcl_DStringFree(&str);
544 Tcl_ResetResult(pDb->interp);
549 ** This routine is called when a transaction is committed. The
550 ** TCL script in pDb->zCommit is executed. If it returns non-zero or
551 ** if it throws an exception, the transaction is rolled back instead
552 ** of being committed.
554 static int DbCommitHandler(void *cd){
555 SqliteDb *pDb = (SqliteDb*)cd;
558 rc = Tcl_Eval(pDb->interp, pDb->zCommit);
559 if( rc!=TCL_OK || atoi(Tcl_GetStringResult(pDb->interp)) ){
565 static void DbRollbackHandler(void *clientData){
566 SqliteDb *pDb = (SqliteDb*)clientData;
567 assert(pDb->pRollbackHook);
568 if( TCL_OK!=Tcl_EvalObjEx(pDb->interp, pDb->pRollbackHook, 0) ){
569 Tcl_BackgroundError(pDb->interp);
573 static void DbUpdateHandler(
580 SqliteDb *pDb = (SqliteDb *)p;
583 assert( pDb->pUpdateHook );
584 assert( op==SQLITE_INSERT || op==SQLITE_UPDATE || op==SQLITE_DELETE );
586 pCmd = Tcl_DuplicateObj(pDb->pUpdateHook);
587 Tcl_IncrRefCount(pCmd);
588 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(
589 ( (op==SQLITE_INSERT)?"INSERT":(op==SQLITE_UPDATE)?"UPDATE":"DELETE"), -1));
590 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zDb, -1));
591 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewStringObj(zTbl, -1));
592 Tcl_ListObjAppendElement(0, pCmd, Tcl_NewWideIntObj(rowid));
593 Tcl_EvalObjEx(pDb->interp, pCmd, TCL_EVAL_DIRECT);
596 static void tclCollateNeeded(
602 SqliteDb *pDb = (SqliteDb *)pCtx;
603 Tcl_Obj *pScript = Tcl_DuplicateObj(pDb->pCollateNeeded);
604 Tcl_IncrRefCount(pScript);
605 Tcl_ListObjAppendElement(0, pScript, Tcl_NewStringObj(zName, -1));
606 Tcl_EvalObjEx(pDb->interp, pScript, 0);
607 Tcl_DecrRefCount(pScript);
611 ** This routine is called to evaluate an SQL collation function implemented
614 static int tclSqlCollate(
621 SqlCollate *p = (SqlCollate *)pCtx;
624 pCmd = Tcl_NewStringObj(p->zScript, -1);
625 Tcl_IncrRefCount(pCmd);
626 Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zA, nA));
627 Tcl_ListObjAppendElement(p->interp, pCmd, Tcl_NewStringObj(zB, nB));
628 Tcl_EvalObjEx(p->interp, pCmd, TCL_EVAL_DIRECT);
629 Tcl_DecrRefCount(pCmd);
630 return (atoi(Tcl_GetStringResult(p->interp)));
634 ** This routine is called to evaluate an SQL function implemented
637 static void tclSqlFunc(sqlite3_context *context, int argc, sqlite3_value**argv){
638 SqlFunc *p = sqlite3_user_data(context);
644 /* If there are no arguments to the function, call Tcl_EvalObjEx on the
645 ** script object directly. This allows the TCL compiler to generate
646 ** bytecode for the command on the first invocation and thus make
647 ** subsequent invocations much faster. */
649 Tcl_IncrRefCount(pCmd);
650 rc = Tcl_EvalObjEx(p->interp, pCmd, 0);
651 Tcl_DecrRefCount(pCmd);
653 /* If there are arguments to the function, make a shallow copy of the
654 ** script object, lappend the arguments, then evaluate the copy.
656 ** By "shallow" copy, we mean a only the outer list Tcl_Obj is duplicated.
657 ** The new Tcl_Obj contains pointers to the original list elements.
658 ** That way, when Tcl_EvalObjv() is run and shimmers the first element
659 ** of the list to tclCmdNameType, that alternate representation will
660 ** be preserved and reused on the next invocation.
664 if( Tcl_ListObjGetElements(p->interp, p->pScript, &nArg, &aArg) ){
665 sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
668 pCmd = Tcl_NewListObj(nArg, aArg);
669 Tcl_IncrRefCount(pCmd);
670 for(i=0; i<argc; i++){
671 sqlite3_value *pIn = argv[i];
674 /* Set pVal to contain the i'th column of this row. */
675 switch( sqlite3_value_type(pIn) ){
677 int bytes = sqlite3_value_bytes(pIn);
678 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes);
681 case SQLITE_INTEGER: {
682 sqlite_int64 v = sqlite3_value_int64(pIn);
683 if( v>=-2147483647 && v<=2147483647 ){
684 pVal = Tcl_NewIntObj(v);
686 pVal = Tcl_NewWideIntObj(v);
691 double r = sqlite3_value_double(pIn);
692 pVal = Tcl_NewDoubleObj(r);
696 pVal = Tcl_NewStringObj("", 0);
700 int bytes = sqlite3_value_bytes(pIn);
701 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes);
705 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal);
707 Tcl_DecrRefCount(pCmd);
708 sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
712 if( !p->useEvalObjv ){
713 /* Tcl_EvalObjEx() will automatically call Tcl_EvalObjv() if pCmd
714 ** is a list without a string representation. To prevent this from
715 ** happening, make sure pCmd has a valid string representation */
718 rc = Tcl_EvalObjEx(p->interp, pCmd, TCL_EVAL_DIRECT);
719 Tcl_DecrRefCount(pCmd);
722 if( rc && rc!=TCL_RETURN ){
723 sqlite3_result_error(context, Tcl_GetStringResult(p->interp), -1);
725 Tcl_Obj *pVar = Tcl_GetObjResult(p->interp);
728 char *zType = pVar->typePtr ? pVar->typePtr->name : "";
730 if( c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0 ){
731 /* Only return a BLOB type if the Tcl variable is a bytearray and
732 ** has no string representation. */
733 data = Tcl_GetByteArrayFromObj(pVar, &n);
734 sqlite3_result_blob(context, data, n, SQLITE_TRANSIENT);
735 }else if( c=='b' && strcmp(zType,"boolean")==0 ){
736 Tcl_GetIntFromObj(0, pVar, &n);
737 sqlite3_result_int(context, n);
738 }else if( c=='d' && strcmp(zType,"double")==0 ){
740 Tcl_GetDoubleFromObj(0, pVar, &r);
741 sqlite3_result_double(context, r);
742 }else if( (c=='w' && strcmp(zType,"wideInt")==0) ||
743 (c=='i' && strcmp(zType,"int")==0) ){
745 Tcl_GetWideIntFromObj(0, pVar, &v);
746 sqlite3_result_int64(context, v);
748 data = (unsigned char *)Tcl_GetStringFromObj(pVar, &n);
749 sqlite3_result_text(context, (char *)data, n, SQLITE_TRANSIENT);
754 #ifndef SQLITE_OMIT_AUTHORIZATION
756 ** This is the authentication function. It appends the authentication
757 ** type code and the two arguments to zCmd[] then invokes the result
758 ** on the interpreter. The reply is examined to determine if the
759 ** authentication fails or succeeds.
761 static int auth_callback(
773 SqliteDb *pDb = (SqliteDb*)pArg;
774 if( pDb->disableAuth ) return SQLITE_OK;
777 case SQLITE_COPY : zCode="SQLITE_COPY"; break;
778 case SQLITE_CREATE_INDEX : zCode="SQLITE_CREATE_INDEX"; break;
779 case SQLITE_CREATE_TABLE : zCode="SQLITE_CREATE_TABLE"; break;
780 case SQLITE_CREATE_TEMP_INDEX : zCode="SQLITE_CREATE_TEMP_INDEX"; break;
781 case SQLITE_CREATE_TEMP_TABLE : zCode="SQLITE_CREATE_TEMP_TABLE"; break;
782 case SQLITE_CREATE_TEMP_TRIGGER: zCode="SQLITE_CREATE_TEMP_TRIGGER"; break;
783 case SQLITE_CREATE_TEMP_VIEW : zCode="SQLITE_CREATE_TEMP_VIEW"; break;
784 case SQLITE_CREATE_TRIGGER : zCode="SQLITE_CREATE_TRIGGER"; break;
785 case SQLITE_CREATE_VIEW : zCode="SQLITE_CREATE_VIEW"; break;
786 case SQLITE_DELETE : zCode="SQLITE_DELETE"; break;
787 case SQLITE_DROP_INDEX : zCode="SQLITE_DROP_INDEX"; break;
788 case SQLITE_DROP_TABLE : zCode="SQLITE_DROP_TABLE"; break;
789 case SQLITE_DROP_TEMP_INDEX : zCode="SQLITE_DROP_TEMP_INDEX"; break;
790 case SQLITE_DROP_TEMP_TABLE : zCode="SQLITE_DROP_TEMP_TABLE"; break;
791 case SQLITE_DROP_TEMP_TRIGGER : zCode="SQLITE_DROP_TEMP_TRIGGER"; break;
792 case SQLITE_DROP_TEMP_VIEW : zCode="SQLITE_DROP_TEMP_VIEW"; break;
793 case SQLITE_DROP_TRIGGER : zCode="SQLITE_DROP_TRIGGER"; break;
794 case SQLITE_DROP_VIEW : zCode="SQLITE_DROP_VIEW"; break;
795 case SQLITE_INSERT : zCode="SQLITE_INSERT"; break;
796 case SQLITE_PRAGMA : zCode="SQLITE_PRAGMA"; break;
797 case SQLITE_READ : zCode="SQLITE_READ"; break;
798 case SQLITE_SELECT : zCode="SQLITE_SELECT"; break;
799 case SQLITE_TRANSACTION : zCode="SQLITE_TRANSACTION"; break;
800 case SQLITE_UPDATE : zCode="SQLITE_UPDATE"; break;
801 case SQLITE_ATTACH : zCode="SQLITE_ATTACH"; break;
802 case SQLITE_DETACH : zCode="SQLITE_DETACH"; break;
803 case SQLITE_ALTER_TABLE : zCode="SQLITE_ALTER_TABLE"; break;
804 case SQLITE_REINDEX : zCode="SQLITE_REINDEX"; break;
805 case SQLITE_ANALYZE : zCode="SQLITE_ANALYZE"; break;
806 case SQLITE_CREATE_VTABLE : zCode="SQLITE_CREATE_VTABLE"; break;
807 case SQLITE_DROP_VTABLE : zCode="SQLITE_DROP_VTABLE"; break;
808 case SQLITE_FUNCTION : zCode="SQLITE_FUNCTION"; break;
809 default : zCode="????"; break;
811 Tcl_DStringInit(&str);
812 Tcl_DStringAppend(&str, pDb->zAuth, -1);
813 Tcl_DStringAppendElement(&str, zCode);
814 Tcl_DStringAppendElement(&str, zArg1 ? zArg1 : "");
815 Tcl_DStringAppendElement(&str, zArg2 ? zArg2 : "");
816 Tcl_DStringAppendElement(&str, zArg3 ? zArg3 : "");
817 Tcl_DStringAppendElement(&str, zArg4 ? zArg4 : "");
818 rc = Tcl_GlobalEval(pDb->interp, Tcl_DStringValue(&str));
819 Tcl_DStringFree(&str);
820 zReply = Tcl_GetStringResult(pDb->interp);
821 if( strcmp(zReply,"SQLITE_OK")==0 ){
823 }else if( strcmp(zReply,"SQLITE_DENY")==0 ){
825 }else if( strcmp(zReply,"SQLITE_IGNORE")==0 ){
832 #endif /* SQLITE_OMIT_AUTHORIZATION */
835 ** zText is a pointer to text obtained via an sqlite3_result_text()
836 ** or similar interface. This routine returns a Tcl string object,
837 ** reference count set to 0, containing the text. If a translation
838 ** between iso8859 and UTF-8 is required, it is preformed.
840 static Tcl_Obj *dbTextToObj(char const *zText){
842 #ifdef UTF_TRANSLATION_NEEDED
844 Tcl_DStringInit(&dCol);
845 Tcl_ExternalToUtfDString(NULL, zText, -1, &dCol);
846 pVal = Tcl_NewStringObj(Tcl_DStringValue(&dCol), -1);
847 Tcl_DStringFree(&dCol);
849 pVal = Tcl_NewStringObj(zText, -1);
855 ** This routine reads a line of text from FILE in, stores
856 ** the text in memory obtained from malloc() and returns a pointer
857 ** to the text. NULL is returned at end of file, or if malloc()
860 ** The interface is like "readline" but no command-line editing
863 ** copied from shell.c from '.import' command
865 static char *local_getline(char *zPrompt, FILE *in){
872 zLine = malloc( nLine );
873 if( zLine==0 ) return 0;
878 nLine = nLine*2 + 100;
879 zLine = realloc(zLine, nLine);
880 if( zLine==0 ) return 0;
882 if( fgets(&zLine[n], nLine - n, in)==0 ){
891 while( zLine[n] ){ n++; }
892 if( n>0 && zLine[n-1]=='\n' ){
898 zLine = realloc( zLine, n+1 );
904 ** Figure out the column names for the data returned by the statement
905 ** passed as the second argument.
907 ** If parameter papColName is not NULL, then *papColName is set to point
908 ** at an array allocated using Tcl_Alloc(). It is the callers responsibility
909 ** to free this array using Tcl_Free(), and to decrement the reference
910 ** count of each Tcl_Obj* member of the array.
912 ** The return value of this function is the number of columns of data
913 ** returned by pStmt (and hence the size of the *papColName array).
915 ** If pArray is not NULL, then it contains the name of a Tcl array
916 ** variable. The "*" member of this array is set to a list containing
917 ** the names of the columns returned by the statement, in order from
918 ** left to right. e.g. if the names of the returned columns are a, b and
919 ** c, it does the equivalent of the tcl command:
921 ** set ${pArray}(*) {a b c}
926 sqlite3_stmt *pStmt, /* SQL statement */
927 Tcl_Obj ***papColName, /* OUT: Array of column names */
928 Tcl_Obj *pArray /* Name of array variable (may be null) */
932 /* Compute column names */
933 nCol = sqlite3_column_count(pStmt);
936 Tcl_Obj **apColName = (Tcl_Obj**)Tcl_Alloc( sizeof(Tcl_Obj*)*nCol );
937 for(i=0; i<nCol; i++){
938 apColName[i] = dbTextToObj(sqlite3_column_name(pStmt,i));
939 Tcl_IncrRefCount(apColName[i]);
942 /* If results are being stored in an array variable, then create
943 ** the array(*) entry for that array
946 Tcl_Obj *pColList = Tcl_NewObj();
947 Tcl_Obj *pStar = Tcl_NewStringObj("*", -1);
948 Tcl_IncrRefCount(pColList);
949 for(i=0; i<nCol; i++){
950 Tcl_ListObjAppendElement(interp, pColList, apColName[i]);
952 Tcl_IncrRefCount(pStar);
953 Tcl_ObjSetVar2(interp, pArray, pStar, pColList,0);
954 Tcl_DecrRefCount(pColList);
955 Tcl_DecrRefCount(pStar);
957 *papColName = apColName;
964 ** The "sqlite" command below creates a new Tcl command for each
965 ** connection it opens to an SQLite database. This routine is invoked
966 ** whenever one of those connection-specific commands is executed
967 ** in Tcl. For example, if you run Tcl code like this:
969 ** sqlite3 db1 "my_database"
972 ** The first command opens a connection to the "my_database" database
973 ** and calls that connection "db1". The second command causes this
974 ** subroutine to be invoked.
976 static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
977 SqliteDb *pDb = (SqliteDb*)cd;
980 static const char *DB_strs[] = {
981 "authorizer", "busy", "cache",
982 "changes", "close", "collate",
983 "collation_needed", "commit_hook", "complete",
984 "copy", "enable_load_extension","errorcode",
985 "eval", "exists", "function",
986 "incrblob", "interrupt", "last_insert_rowid",
987 "nullvalue", "onecolumn", "profile",
988 "progress", "rekey", "rollback_hook",
989 "timeout", "total_changes", "trace",
990 "transaction", "update_hook", "version",
994 DB_AUTHORIZER, DB_BUSY, DB_CACHE,
995 DB_CHANGES, DB_CLOSE, DB_COLLATE,
996 DB_COLLATION_NEEDED, DB_COMMIT_HOOK, DB_COMPLETE,
997 DB_COPY, DB_ENABLE_LOAD_EXTENSION,DB_ERRORCODE,
998 DB_EVAL, DB_EXISTS, DB_FUNCTION,
999 DB_INCRBLOB, DB_INTERRUPT, DB_LAST_INSERT_ROWID,
1000 DB_NULLVALUE, DB_ONECOLUMN, DB_PROFILE,
1001 DB_PROGRESS, DB_REKEY, DB_ROLLBACK_HOOK,
1002 DB_TIMEOUT, DB_TOTAL_CHANGES, DB_TRACE,
1003 DB_TRANSACTION, DB_UPDATE_HOOK, DB_VERSION
1005 /* don't leave trailing commas on DB_enum, it confuses the AIX xlc compiler */
1008 Tcl_WrongNumArgs(interp, 1, objv, "SUBCOMMAND ...");
1011 if( Tcl_GetIndexFromObj(interp, objv[1], DB_strs, "option", 0, &choice) ){
1015 switch( (enum DB_enum)choice ){
1017 /* $db authorizer ?CALLBACK?
1019 ** Invoke the given callback to authorize each SQL operation as it is
1020 ** compiled. 5 arguments are appended to the callback before it is
1023 ** (1) The authorization type (ex: SQLITE_CREATE_TABLE, SQLITE_INSERT, ...)
1024 ** (2) First descriptive name (depends on authorization type)
1025 ** (3) Second descriptive name
1026 ** (4) Name of the database (ex: "main", "temp")
1027 ** (5) Name of trigger that is doing the access
1029 ** The callback should return on of the following strings: SQLITE_OK,
1030 ** SQLITE_IGNORE, or SQLITE_DENY. Any other return value is an error.
1032 ** If this method is invoked with no arguments, the current authorization
1033 ** callback string is returned.
1035 case DB_AUTHORIZER: {
1036 #ifdef SQLITE_OMIT_AUTHORIZATION
1037 Tcl_AppendResult(interp, "authorization not available in this build", 0);
1041 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
1043 }else if( objc==2 ){
1045 Tcl_AppendResult(interp, pDb->zAuth, 0);
1051 Tcl_Free(pDb->zAuth);
1053 zAuth = Tcl_GetStringFromObj(objv[2], &len);
1054 if( zAuth && len>0 ){
1055 pDb->zAuth = Tcl_Alloc( len + 1 );
1056 memcpy(pDb->zAuth, zAuth, len+1);
1061 pDb->interp = interp;
1062 sqlite3_set_authorizer(pDb->db, auth_callback, pDb);
1064 sqlite3_set_authorizer(pDb->db, 0, 0);
1071 /* $db busy ?CALLBACK?
1073 ** Invoke the given callback if an SQL statement attempts to open
1074 ** a locked database file.
1078 Tcl_WrongNumArgs(interp, 2, objv, "CALLBACK");
1080 }else if( objc==2 ){
1082 Tcl_AppendResult(interp, pDb->zBusy, 0);
1088 Tcl_Free(pDb->zBusy);
1090 zBusy = Tcl_GetStringFromObj(objv[2], &len);
1091 if( zBusy && len>0 ){
1092 pDb->zBusy = Tcl_Alloc( len + 1 );
1093 memcpy(pDb->zBusy, zBusy, len+1);
1098 pDb->interp = interp;
1099 sqlite3_busy_handler(pDb->db, DbBusyHandler, pDb);
1101 sqlite3_busy_handler(pDb->db, 0, 0);
1110 ** Flush the prepared statement cache, or set the maximum number of
1111 ** cached statements.
1118 Tcl_WrongNumArgs(interp, 1, objv, "cache option ?arg?");
1121 subCmd = Tcl_GetStringFromObj( objv[2], 0 );
1122 if( *subCmd=='f' && strcmp(subCmd,"flush")==0 ){
1124 Tcl_WrongNumArgs(interp, 2, objv, "flush");
1127 flushStmtCache( pDb );
1129 }else if( *subCmd=='s' && strcmp(subCmd,"size")==0 ){
1131 Tcl_WrongNumArgs(interp, 2, objv, "size n");
1134 if( TCL_ERROR==Tcl_GetIntFromObj(interp, objv[3], &n) ){
1135 Tcl_AppendResult( interp, "cannot convert \"",
1136 Tcl_GetStringFromObj(objv[3],0), "\" to integer", 0);
1140 flushStmtCache( pDb );
1142 }else if( n>MAX_PREPARED_STMTS ){
1143 n = MAX_PREPARED_STMTS;
1149 Tcl_AppendResult( interp, "bad option \"",
1150 Tcl_GetStringFromObj(objv[2],0), "\": must be flush or size", 0);
1158 ** Return the number of rows that were modified, inserted, or deleted by
1159 ** the most recent INSERT, UPDATE or DELETE statement, not including
1160 ** any changes made by trigger programs.
1165 Tcl_WrongNumArgs(interp, 2, objv, "");
1168 pResult = Tcl_GetObjResult(interp);
1169 Tcl_SetIntObj(pResult, sqlite3_changes(pDb->db));
1175 ** Shutdown the database
1178 Tcl_DeleteCommand(interp, Tcl_GetStringFromObj(objv[0], 0));
1183 ** $db collate NAME SCRIPT
1185 ** Create a new SQL collation function called NAME. Whenever
1186 ** that function is called, invoke SCRIPT to evaluate the function.
1189 SqlCollate *pCollate;
1194 Tcl_WrongNumArgs(interp, 2, objv, "NAME SCRIPT");
1197 zName = Tcl_GetStringFromObj(objv[2], 0);
1198 zScript = Tcl_GetStringFromObj(objv[3], &nScript);
1199 pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 );
1200 if( pCollate==0 ) return TCL_ERROR;
1201 pCollate->interp = interp;
1202 pCollate->pNext = pDb->pCollate;
1203 pCollate->zScript = (char*)&pCollate[1];
1204 pDb->pCollate = pCollate;
1205 memcpy(pCollate->zScript, zScript, nScript+1);
1206 if( sqlite3_create_collation(pDb->db, zName, SQLITE_UTF8,
1207 pCollate, tclSqlCollate) ){
1208 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
1215 ** $db collation_needed SCRIPT
1217 ** Create a new SQL collation function called NAME. Whenever
1218 ** that function is called, invoke SCRIPT to evaluate the function.
1220 case DB_COLLATION_NEEDED: {
1222 Tcl_WrongNumArgs(interp, 2, objv, "SCRIPT");
1225 if( pDb->pCollateNeeded ){
1226 Tcl_DecrRefCount(pDb->pCollateNeeded);
1228 pDb->pCollateNeeded = Tcl_DuplicateObj(objv[2]);
1229 Tcl_IncrRefCount(pDb->pCollateNeeded);
1230 sqlite3_collation_needed(pDb->db, pDb, tclCollateNeeded);
1234 /* $db commit_hook ?CALLBACK?
1236 ** Invoke the given callback just before committing every SQL transaction.
1237 ** If the callback throws an exception or returns non-zero, then the
1238 ** transaction is aborted. If CALLBACK is an empty string, the callback
1241 case DB_COMMIT_HOOK: {
1243 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
1245 }else if( objc==2 ){
1247 Tcl_AppendResult(interp, pDb->zCommit, 0);
1253 Tcl_Free(pDb->zCommit);
1255 zCommit = Tcl_GetStringFromObj(objv[2], &len);
1256 if( zCommit && len>0 ){
1257 pDb->zCommit = Tcl_Alloc( len + 1 );
1258 memcpy(pDb->zCommit, zCommit, len+1);
1263 pDb->interp = interp;
1264 sqlite3_commit_hook(pDb->db, DbCommitHandler, pDb);
1266 sqlite3_commit_hook(pDb->db, 0, 0);
1274 ** Return TRUE if SQL is a complete SQL statement. Return FALSE if
1275 ** additional lines of input are needed. This is similar to the
1276 ** built-in "info complete" command of Tcl.
1279 #ifndef SQLITE_OMIT_COMPLETE
1283 Tcl_WrongNumArgs(interp, 2, objv, "SQL");
1286 isComplete = sqlite3_complete( Tcl_GetStringFromObj(objv[2], 0) );
1287 pResult = Tcl_GetObjResult(interp);
1288 Tcl_SetBooleanObj(pResult, isComplete);
1293 /* $db copy conflict-algorithm table filename ?SEPARATOR? ?NULLINDICATOR?
1295 ** Copy data into table from filename, optionally using SEPARATOR
1296 ** as column separators. If a column contains a null string, or the
1297 ** value of NULLINDICATOR, a NULL is inserted for the column.
1298 ** conflict-algorithm is one of the sqlite conflict algorithms:
1299 ** rollback, abort, fail, ignore, replace
1300 ** On success, return the number of lines processed, not necessarily same
1301 ** as 'db changes' due to conflict-algorithm selected.
1303 ** This code is basically an implementation/enhancement of
1304 ** the sqlite3 shell.c ".import" command.
1306 ** This command usage is equivalent to the sqlite2.x COPY statement,
1307 ** which imports file data into a table using the PostgreSQL COPY file format:
1308 ** $db copy $conflit_algo $table_name $filename \t \\N
1311 char *zTable; /* Insert data into this table */
1312 char *zFile; /* The file from which to extract data */
1313 char *zConflict; /* The conflict algorithm to use */
1314 sqlite3_stmt *pStmt; /* A statement */
1315 int nCol; /* Number of columns in the table */
1316 int nByte; /* Number of bytes in an SQL string */
1317 int i, j; /* Loop counters */
1318 int nSep; /* Number of bytes in zSep[] */
1319 int nNull; /* Number of bytes in zNull[] */
1320 char *zSql; /* An SQL statement */
1321 char *zLine; /* A single line of input from the file */
1322 char **azCol; /* zLine[] broken up into columns */
1323 char *zCommit; /* How to commit changes */
1324 FILE *in; /* The input file */
1325 int lineno = 0; /* Line number of input file */
1326 char zLineNum[80]; /* Line number print buffer */
1327 Tcl_Obj *pResult; /* interp result */
1331 if( objc<5 || objc>7 ){
1332 Tcl_WrongNumArgs(interp, 2, objv,
1333 "CONFLICT-ALGORITHM TABLE FILENAME ?SEPARATOR? ?NULLINDICATOR?");
1337 zSep = Tcl_GetStringFromObj(objv[5], 0);
1342 zNull = Tcl_GetStringFromObj(objv[6], 0);
1346 zConflict = Tcl_GetStringFromObj(objv[2], 0);
1347 zTable = Tcl_GetStringFromObj(objv[3], 0);
1348 zFile = Tcl_GetStringFromObj(objv[4], 0);
1349 nSep = strlen(zSep);
1350 nNull = strlen(zNull);
1352 Tcl_AppendResult(interp,"Error: non-null separator required for copy",0);
1355 if(strcmp(zConflict, "rollback") != 0 &&
1356 strcmp(zConflict, "abort" ) != 0 &&
1357 strcmp(zConflict, "fail" ) != 0 &&
1358 strcmp(zConflict, "ignore" ) != 0 &&
1359 strcmp(zConflict, "replace" ) != 0 ) {
1360 Tcl_AppendResult(interp, "Error: \"", zConflict,
1361 "\", conflict-algorithm must be one of: rollback, "
1362 "abort, fail, ignore, or replace", 0);
1365 zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable);
1367 Tcl_AppendResult(interp, "Error: no such table: ", zTable, 0);
1370 nByte = strlen(zSql);
1371 rc = sqlite3_prepare(pDb->db, zSql, -1, &pStmt, 0);
1374 Tcl_AppendResult(interp, "Error: ", sqlite3_errmsg(pDb->db), 0);
1377 nCol = sqlite3_column_count(pStmt);
1379 sqlite3_finalize(pStmt);
1383 zSql = malloc( nByte + 50 + nCol*2 );
1385 Tcl_AppendResult(interp, "Error: can't malloc()", 0);
1388 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?",
1391 for(i=1; i<nCol; i++){
1397 rc = sqlite3_prepare(pDb->db, zSql, -1, &pStmt, 0);
1400 Tcl_AppendResult(interp, "Error: ", sqlite3_errmsg(pDb->db), 0);
1401 sqlite3_finalize(pStmt);
1404 in = fopen(zFile, "rb");
1406 Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, NULL);
1407 sqlite3_finalize(pStmt);
1410 azCol = malloc( sizeof(azCol[0])*(nCol+1) );
1412 Tcl_AppendResult(interp, "Error: can't malloc()", 0);
1416 (void)sqlite3_exec(pDb->db, "BEGIN", 0, 0, 0);
1418 while( (zLine = local_getline(0, in))!=0 ){
1423 for(i=0, z=zLine; *z; z++){
1424 if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){
1428 azCol[i] = &z[nSep];
1435 int nErr = strlen(zFile) + 200;
1436 zErr = malloc(nErr);
1438 sqlite3_snprintf(nErr, zErr,
1439 "Error: %s line %d: expected %d columns of data but found %d",
1440 zFile, lineno, nCol, i+1);
1441 Tcl_AppendResult(interp, zErr, 0);
1444 zCommit = "ROLLBACK";
1447 for(i=0; i<nCol; i++){
1448 /* check for null data, if so, bind as null */
1449 if ((nNull>0 && strcmp(azCol[i], zNull)==0) || strlen(azCol[i])==0) {
1450 sqlite3_bind_null(pStmt, i+1);
1452 sqlite3_bind_text(pStmt, i+1, azCol[i], -1, SQLITE_STATIC);
1455 sqlite3_step(pStmt);
1456 rc = sqlite3_reset(pStmt);
1458 if( rc!=SQLITE_OK ){
1459 Tcl_AppendResult(interp,"Error: ", sqlite3_errmsg(pDb->db), 0);
1460 zCommit = "ROLLBACK";
1466 sqlite3_finalize(pStmt);
1467 (void)sqlite3_exec(pDb->db, zCommit, 0, 0, 0);
1469 if( zCommit[0] == 'C' ){
1470 /* success, set result as number of lines processed */
1471 pResult = Tcl_GetObjResult(interp);
1472 Tcl_SetIntObj(pResult, lineno);
1475 /* failure, append lineno where failed */
1476 sqlite3_snprintf(sizeof(zLineNum), zLineNum,"%d",lineno);
1477 Tcl_AppendResult(interp,", failed while processing line: ",zLineNum,0);
1484 ** $db enable_load_extension BOOLEAN
1486 ** Turn the extension loading feature on or off. It if off by
1489 case DB_ENABLE_LOAD_EXTENSION: {
1490 #ifndef SQLITE_OMIT_LOAD_EXTENSION
1493 Tcl_WrongNumArgs(interp, 2, objv, "BOOLEAN");
1496 if( Tcl_GetBooleanFromObj(interp, objv[2], &onoff) ){
1499 sqlite3_enable_load_extension(pDb->db, onoff);
1502 Tcl_AppendResult(interp, "extension loading is turned off at compile-time",
1511 ** Return the numeric error code that was returned by the most recent
1512 ** call to sqlite3_exec().
1514 case DB_ERRORCODE: {
1515 Tcl_SetObjResult(interp, Tcl_NewIntObj(sqlite3_errcode(pDb->db)));
1520 ** $db eval $sql ?array? ?{ ...code... }?
1521 ** $db onecolumn $sql
1523 ** The SQL statement in $sql is evaluated. For each row, the values are
1524 ** placed in elements of the array named "array" and ...code... is executed.
1525 ** If "array" and "code" are omitted, then no callback is every invoked.
1526 ** If "array" is an empty string, then the values are placed in variables
1527 ** that have the same name as the fields extracted by the query.
1529 ** The onecolumn method is the equivalent of:
1530 ** lindex [$db eval $sql] 0
1535 char const *zSql; /* Next SQL statement to execute */
1536 char const *zLeft; /* What is left after first stmt in zSql */
1537 sqlite3_stmt *pStmt; /* Compiled SQL statment */
1538 Tcl_Obj *pArray; /* Name of array into which results are written */
1539 Tcl_Obj *pScript; /* Script to run for each result set */
1540 Tcl_Obj **apParm; /* Parameters that need a Tcl_DecrRefCount() */
1541 int nParm; /* Number of entries used in apParm[] */
1542 Tcl_Obj *aParm[10]; /* Static space for apParm[] in the common case */
1543 Tcl_Obj *pRet; /* Value to be returned */
1544 SqlPreparedStmt *pPreStmt; /* Pointer to a prepared statement */
1547 if( choice==DB_EVAL ){
1548 if( objc<3 || objc>5 ){
1549 Tcl_WrongNumArgs(interp, 2, objv, "SQL ?ARRAY-NAME? ?SCRIPT?");
1552 pRet = Tcl_NewObj();
1553 Tcl_IncrRefCount(pRet);
1556 Tcl_WrongNumArgs(interp, 2, objv, "SQL");
1559 if( choice==DB_EXISTS ){
1560 pRet = Tcl_NewBooleanObj(0);
1561 Tcl_IncrRefCount(pRet);
1567 pArray = pScript = 0;
1568 }else if( objc==4 ){
1573 if( Tcl_GetString(pArray)[0]==0 ) pArray = 0;
1577 Tcl_IncrRefCount(objv[2]);
1578 zSql = Tcl_GetStringFromObj(objv[2], 0);
1579 while( rc==TCL_OK && zSql[0] ){
1580 int i; /* Loop counter */
1581 int nVar; /* Number of bind parameters in the pStmt */
1582 int nCol = -1; /* Number of columns in the result set */
1583 Tcl_Obj **apColName = 0; /* Array of column names */
1584 int len; /* String length of zSql */
1586 /* Try to find a SQL statement that has already been compiled and
1587 ** which matches the next sequence of SQL.
1591 for(pPreStmt = pDb->stmtList; pPreStmt; pPreStmt=pPreStmt->pNext){
1592 int n = pPreStmt->nSql;
1594 && memcmp(pPreStmt->zSql, zSql, n)==0
1595 && (zSql[n]==0 || zSql[n-1]==';')
1597 pStmt = pPreStmt->pStmt;
1598 zLeft = &zSql[pPreStmt->nSql];
1600 /* When a prepared statement is found, unlink it from the
1601 ** cache list. It will later be added back to the beginning
1602 ** of the cache list in order to implement LRU replacement.
1604 if( pPreStmt->pPrev ){
1605 pPreStmt->pPrev->pNext = pPreStmt->pNext;
1607 pDb->stmtList = pPreStmt->pNext;
1609 if( pPreStmt->pNext ){
1610 pPreStmt->pNext->pPrev = pPreStmt->pPrev;
1612 pDb->stmtLast = pPreStmt->pPrev;
1619 /* If no prepared statement was found. Compile the SQL text
1622 if( SQLITE_OK!=sqlite3_prepare_v2(pDb->db, zSql, -1, &pStmt, &zLeft) ){
1623 Tcl_SetObjResult(interp, dbTextToObj(sqlite3_errmsg(pDb->db)));
1628 if( SQLITE_OK!=sqlite3_errcode(pDb->db) ){
1629 /* A compile-time error in the statement
1631 Tcl_SetObjResult(interp, dbTextToObj(sqlite3_errmsg(pDb->db)));
1635 /* The statement was a no-op. Continue to the next statement
1636 ** in the SQL string.
1642 assert( pPreStmt==0 );
1645 /* Bind values to parameters that begin with $ or :
1647 nVar = sqlite3_bind_parameter_count(pStmt);
1649 if( nVar>sizeof(aParm)/sizeof(aParm[0]) ){
1650 apParm = (Tcl_Obj**)Tcl_Alloc(nVar*sizeof(apParm[0]));
1654 for(i=1; i<=nVar; i++){
1655 const char *zVar = sqlite3_bind_parameter_name(pStmt, i);
1656 if( zVar!=0 && (zVar[0]=='$' || zVar[0]==':' || zVar[0]=='@') ){
1657 Tcl_Obj *pVar = Tcl_GetVar2Ex(interp, &zVar[1], 0, 0);
1661 char *zType = pVar->typePtr ? pVar->typePtr->name : "";
1664 (c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0) ){
1665 /* Load a BLOB type if the Tcl variable is a bytearray and
1666 ** it has no string representation or the host
1667 ** parameter name begins with "@". */
1668 data = Tcl_GetByteArrayFromObj(pVar, &n);
1669 sqlite3_bind_blob(pStmt, i, data, n, SQLITE_STATIC);
1670 Tcl_IncrRefCount(pVar);
1671 apParm[nParm++] = pVar;
1672 }else if( c=='b' && strcmp(zType,"boolean")==0 ){
1673 Tcl_GetIntFromObj(interp, pVar, &n);
1674 sqlite3_bind_int(pStmt, i, n);
1675 }else if( c=='d' && strcmp(zType,"double")==0 ){
1677 Tcl_GetDoubleFromObj(interp, pVar, &r);
1678 sqlite3_bind_double(pStmt, i, r);
1679 }else if( (c=='w' && strcmp(zType,"wideInt")==0) ||
1680 (c=='i' && strcmp(zType,"int")==0) ){
1682 Tcl_GetWideIntFromObj(interp, pVar, &v);
1683 sqlite3_bind_int64(pStmt, i, v);
1685 data = (unsigned char *)Tcl_GetStringFromObj(pVar, &n);
1686 sqlite3_bind_text(pStmt, i, (char *)data, n, SQLITE_STATIC);
1687 Tcl_IncrRefCount(pVar);
1688 apParm[nParm++] = pVar;
1691 sqlite3_bind_null( pStmt, i );
1698 while( rc==TCL_OK && pStmt && SQLITE_ROW==sqlite3_step(pStmt) ){
1700 /* Compute column names. This must be done after the first successful
1701 ** call to sqlite3_step(), in case the query is recompiled and the
1702 ** number or names of the returned columns changes.
1704 assert(!pArray||pScript);
1706 Tcl_Obj ***ap = (pScript?&apColName:0);
1707 nCol = computeColumnNames(interp, pStmt, ap, pArray);
1710 for(i=0; i<nCol; i++){
1713 /* Set pVal to contain the i'th column of this row. */
1714 switch( sqlite3_column_type(pStmt, i) ){
1716 int bytes = sqlite3_column_bytes(pStmt, i);
1717 const char *zBlob = sqlite3_column_blob(pStmt, i);
1718 if( !zBlob ) bytes = 0;
1719 pVal = Tcl_NewByteArrayObj((u8*)zBlob, bytes);
1722 case SQLITE_INTEGER: {
1723 sqlite_int64 v = sqlite3_column_int64(pStmt, i);
1724 if( v>=-2147483647 && v<=2147483647 ){
1725 pVal = Tcl_NewIntObj(v);
1727 pVal = Tcl_NewWideIntObj(v);
1731 case SQLITE_FLOAT: {
1732 double r = sqlite3_column_double(pStmt, i);
1733 pVal = Tcl_NewDoubleObj(r);
1737 pVal = dbTextToObj(pDb->zNull);
1741 pVal = dbTextToObj((char *)sqlite3_column_text(pStmt, i));
1748 Tcl_ObjSetVar2(interp, apColName[i], 0, pVal, 0);
1750 Tcl_ObjSetVar2(interp, pArray, apColName[i], pVal, 0);
1752 }else if( choice==DB_ONECOLUMN ){
1756 Tcl_IncrRefCount(pRet);
1760 }else if( choice==DB_EXISTS ){
1761 Tcl_DecrRefCount(pRet);
1762 pRet = Tcl_NewBooleanObj(1);
1763 Tcl_IncrRefCount(pRet);
1767 Tcl_ListObjAppendElement(interp, pRet, pVal);
1772 rc = Tcl_EvalObjEx(interp, pScript, 0);
1773 if( rc==TCL_CONTINUE ){
1778 if( rc==TCL_BREAK ){
1782 /* Free the column name objects */
1784 /* If the query returned no rows, but an array variable was
1785 ** specified, call computeColumnNames() now to populate the
1786 ** arrayname(*) variable.
1788 if (pArray && nCol < 0) {
1789 Tcl_Obj ***ap = (pScript?&apColName:0);
1790 nCol = computeColumnNames(interp, pStmt, ap, pArray);
1792 for(i=0; i<nCol; i++){
1793 Tcl_DecrRefCount(apColName[i]);
1795 Tcl_Free((char*)apColName);
1798 /* Free the bound string and blob parameters */
1799 for(i=0; i<nParm; i++){
1800 Tcl_DecrRefCount(apParm[i]);
1802 if( apParm!=aParm ){
1803 Tcl_Free((char*)apParm);
1806 /* Reset the statement. If the result code is SQLITE_SCHEMA, then
1807 ** flush the statement cache and try the statement again.
1809 rc2 = sqlite3_reset(pStmt);
1810 if( SQLITE_OK!=rc2 ){
1811 /* If a run-time error occurs, report the error and stop reading
1814 Tcl_SetObjResult(interp, dbTextToObj(sqlite3_errmsg(pDb->db)));
1815 sqlite3_finalize(pStmt);
1817 if( pPreStmt ) Tcl_Free((char*)pPreStmt);
1819 }else if( pDb->maxStmt<=0 ){
1820 /* If the cache is turned off, deallocated the statement */
1821 if( pPreStmt ) Tcl_Free((char*)pPreStmt);
1822 sqlite3_finalize(pStmt);
1824 /* Everything worked and the cache is operational.
1825 ** Create a new SqlPreparedStmt structure if we need one.
1826 ** (If we already have one we can just reuse it.)
1830 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc( sizeof(*pPreStmt) );
1831 if( pPreStmt==0 ) return TCL_ERROR;
1832 pPreStmt->pStmt = pStmt;
1833 pPreStmt->nSql = len;
1834 pPreStmt->zSql = sqlite3_sql(pStmt);
1835 assert( strlen(pPreStmt->zSql)==len );
1836 assert( 0==memcmp(pPreStmt->zSql, zSql, len) );
1839 /* Add the prepared statement to the beginning of the cache list
1841 pPreStmt->pNext = pDb->stmtList;
1842 pPreStmt->pPrev = 0;
1843 if( pDb->stmtList ){
1844 pDb->stmtList->pPrev = pPreStmt;
1846 pDb->stmtList = pPreStmt;
1847 if( pDb->stmtLast==0 ){
1848 assert( pDb->nStmt==0 );
1849 pDb->stmtLast = pPreStmt;
1851 assert( pDb->nStmt>0 );
1855 /* If we have too many statement in cache, remove the surplus from the
1856 ** end of the cache list.
1858 while( pDb->nStmt>pDb->maxStmt ){
1859 sqlite3_finalize(pDb->stmtLast->pStmt);
1860 pDb->stmtLast = pDb->stmtLast->pPrev;
1861 Tcl_Free((char*)pDb->stmtLast->pNext);
1862 pDb->stmtLast->pNext = 0;
1867 /* Proceed to the next statement */
1870 Tcl_DecrRefCount(objv[2]);
1874 Tcl_SetObjResult(interp, pRet);
1876 Tcl_DecrRefCount(pRet);
1877 }else if( rc==TCL_OK ){
1878 Tcl_ResetResult(interp);
1884 ** $db function NAME [-argcount N] SCRIPT
1886 ** Create a new SQL function called NAME. Whenever that function is
1887 ** called, invoke SCRIPT to evaluate the function.
1895 const char *z = Tcl_GetString(objv[3]);
1897 if( n>2 && strncmp(z, "-argcount",n)==0 ){
1898 if( Tcl_GetIntFromObj(interp, objv[4], &nArg) ) return TCL_ERROR;
1900 Tcl_AppendResult(interp, "number of arguments must be non-negative",
1906 }else if( objc!=4 ){
1907 Tcl_WrongNumArgs(interp, 2, objv, "NAME [-argcount N] SCRIPT");
1912 zName = Tcl_GetStringFromObj(objv[2], 0);
1913 pFunc = findSqlFunc(pDb, zName);
1914 if( pFunc==0 ) return TCL_ERROR;
1915 if( pFunc->pScript ){
1916 Tcl_DecrRefCount(pFunc->pScript);
1918 pFunc->pScript = pScript;
1919 Tcl_IncrRefCount(pScript);
1920 pFunc->useEvalObjv = safeToUseEvalObjv(interp, pScript);
1921 rc = sqlite3_create_function(pDb->db, zName, nArg, SQLITE_UTF8,
1922 pFunc, tclSqlFunc, 0, 0);
1923 if( rc!=SQLITE_OK ){
1925 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE);
1931 ** $db incrblob ?-readonly? ?DB? TABLE COLUMN ROWID
1934 #ifdef SQLITE_OMIT_INCRBLOB
1935 Tcl_AppendResult(interp, "incrblob not available in this build", 0);
1939 const char *zDb = "main";
1941 const char *zColumn;
1944 /* Check for the -readonly option */
1945 if( objc>3 && strcmp(Tcl_GetString(objv[2]), "-readonly")==0 ){
1949 if( objc!=(5+isReadonly) && objc!=(6+isReadonly) ){
1950 Tcl_WrongNumArgs(interp, 2, objv, "?-readonly? ?DB? TABLE COLUMN ROWID");
1954 if( objc==(6+isReadonly) ){
1955 zDb = Tcl_GetString(objv[2]);
1957 zTable = Tcl_GetString(objv[objc-3]);
1958 zColumn = Tcl_GetString(objv[objc-2]);
1959 rc = Tcl_GetWideIntFromObj(interp, objv[objc-1], &iRow);
1962 rc = createIncrblobChannel(
1963 interp, pDb, zDb, zTable, zColumn, iRow, isReadonly
1973 ** Interrupt the execution of the inner-most SQL interpreter. This
1974 ** causes the SQL statement to return an error of SQLITE_INTERRUPT.
1976 case DB_INTERRUPT: {
1977 sqlite3_interrupt(pDb->db);
1982 ** $db nullvalue ?STRING?
1984 ** Change text used when a NULL comes back from the database. If ?STRING?
1985 ** is not present, then the current string used for NULL is returned.
1986 ** If STRING is present, then STRING is returned.
1989 case DB_NULLVALUE: {
1990 if( objc!=2 && objc!=3 ){
1991 Tcl_WrongNumArgs(interp, 2, objv, "NULLVALUE");
1996 char *zNull = Tcl_GetStringFromObj(objv[2], &len);
1998 Tcl_Free(pDb->zNull);
2000 if( zNull && len>0 ){
2001 pDb->zNull = Tcl_Alloc( len + 1 );
2002 strncpy(pDb->zNull, zNull, len);
2003 pDb->zNull[len] = '\0';
2008 Tcl_SetObjResult(interp, dbTextToObj(pDb->zNull));
2013 ** $db last_insert_rowid
2015 ** Return an integer which is the ROWID for the most recent insert.
2017 case DB_LAST_INSERT_ROWID: {
2021 Tcl_WrongNumArgs(interp, 2, objv, "");
2024 rowid = sqlite3_last_insert_rowid(pDb->db);
2025 pResult = Tcl_GetObjResult(interp);
2026 Tcl_SetWideIntObj(pResult, rowid);
2031 ** The DB_ONECOLUMN method is implemented together with DB_EVAL.
2034 /* $db progress ?N CALLBACK?
2036 ** Invoke the given callback every N virtual machine opcodes while executing
2041 if( pDb->zProgress ){
2042 Tcl_AppendResult(interp, pDb->zProgress, 0);
2044 }else if( objc==4 ){
2048 if( TCL_OK!=Tcl_GetIntFromObj(interp, objv[2], &N) ){
2051 if( pDb->zProgress ){
2052 Tcl_Free(pDb->zProgress);
2054 zProgress = Tcl_GetStringFromObj(objv[3], &len);
2055 if( zProgress && len>0 ){
2056 pDb->zProgress = Tcl_Alloc( len + 1 );
2057 memcpy(pDb->zProgress, zProgress, len+1);
2061 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK
2062 if( pDb->zProgress ){
2063 pDb->interp = interp;
2064 sqlite3_progress_handler(pDb->db, N, DbProgressHandler, pDb);
2066 sqlite3_progress_handler(pDb->db, 0, 0, 0);
2070 Tcl_WrongNumArgs(interp, 2, objv, "N CALLBACK");
2076 /* $db profile ?CALLBACK?
2078 ** Make arrangements to invoke the CALLBACK routine after each SQL statement
2079 ** that has run. The text of the SQL and the amount of elapse time are
2080 ** appended to CALLBACK before the script is run.
2084 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
2086 }else if( objc==2 ){
2087 if( pDb->zProfile ){
2088 Tcl_AppendResult(interp, pDb->zProfile, 0);
2093 if( pDb->zProfile ){
2094 Tcl_Free(pDb->zProfile);
2096 zProfile = Tcl_GetStringFromObj(objv[2], &len);
2097 if( zProfile && len>0 ){
2098 pDb->zProfile = Tcl_Alloc( len + 1 );
2099 memcpy(pDb->zProfile, zProfile, len+1);
2103 #ifndef SQLITE_OMIT_TRACE
2104 if( pDb->zProfile ){
2105 pDb->interp = interp;
2106 sqlite3_profile(pDb->db, DbProfileHandler, pDb);
2108 sqlite3_profile(pDb->db, 0, 0);
2118 ** Change the encryption key on the currently open database.
2124 Tcl_WrongNumArgs(interp, 2, objv, "KEY");
2127 pKey = Tcl_GetByteArrayFromObj(objv[2], &nKey);
2128 #ifdef SQLITE_HAS_CODEC
2129 rc = sqlite3_rekey(pDb->db, pKey, nKey);
2131 Tcl_AppendResult(interp, sqlite3ErrStr(rc), 0);
2139 ** $db timeout MILLESECONDS
2141 ** Delay for the number of milliseconds specified when a file is locked.
2146 Tcl_WrongNumArgs(interp, 2, objv, "MILLISECONDS");
2149 if( Tcl_GetIntFromObj(interp, objv[2], &ms) ) return TCL_ERROR;
2150 sqlite3_busy_timeout(pDb->db, ms);
2155 ** $db total_changes
2157 ** Return the number of rows that were modified, inserted, or deleted
2158 ** since the database handle was created.
2160 case DB_TOTAL_CHANGES: {
2163 Tcl_WrongNumArgs(interp, 2, objv, "");
2166 pResult = Tcl_GetObjResult(interp);
2167 Tcl_SetIntObj(pResult, sqlite3_total_changes(pDb->db));
2171 /* $db trace ?CALLBACK?
2173 ** Make arrangements to invoke the CALLBACK routine for each SQL statement
2174 ** that is executed. The text of the SQL is appended to CALLBACK before
2179 Tcl_WrongNumArgs(interp, 2, objv, "?CALLBACK?");
2181 }else if( objc==2 ){
2183 Tcl_AppendResult(interp, pDb->zTrace, 0);
2189 Tcl_Free(pDb->zTrace);
2191 zTrace = Tcl_GetStringFromObj(objv[2], &len);
2192 if( zTrace && len>0 ){
2193 pDb->zTrace = Tcl_Alloc( len + 1 );
2194 memcpy(pDb->zTrace, zTrace, len+1);
2198 #ifndef SQLITE_OMIT_TRACE
2200 pDb->interp = interp;
2201 sqlite3_trace(pDb->db, DbTraceHandler, pDb);
2203 sqlite3_trace(pDb->db, 0, 0);
2210 /* $db transaction [-deferred|-immediate|-exclusive] SCRIPT
2212 ** Start a new transaction (if we are not already in the midst of a
2213 ** transaction) and execute the TCL script SCRIPT. After SCRIPT
2214 ** completes, either commit the transaction or roll it back if SCRIPT
2215 ** throws an exception. Or if no new transation was started, do nothing.
2216 ** pass the exception on up the stack.
2218 ** This command was inspired by Dave Thomas's talk on Ruby at the
2219 ** 2005 O'Reilly Open Source Convention (OSCON).
2221 case DB_TRANSACTION: {
2224 const char *zBegin = "BEGIN";
2225 if( objc!=3 && objc!=4 ){
2226 Tcl_WrongNumArgs(interp, 2, objv, "[TYPE] SCRIPT");
2232 static const char *TTYPE_strs[] = {
2233 "deferred", "exclusive", "immediate", 0
2236 TTYPE_DEFERRED, TTYPE_EXCLUSIVE, TTYPE_IMMEDIATE
2239 if( Tcl_GetIndexFromObj(interp, objv[2], TTYPE_strs, "transaction type",
2243 switch( (enum TTYPE_enum)ttype ){
2244 case TTYPE_DEFERRED: /* no-op */; break;
2245 case TTYPE_EXCLUSIVE: zBegin = "BEGIN EXCLUSIVE"; break;
2246 case TTYPE_IMMEDIATE: zBegin = "BEGIN IMMEDIATE"; break;
2250 inTrans = !sqlite3_get_autocommit(pDb->db);
2253 (void)sqlite3_exec(pDb->db, zBegin, 0, 0, 0);
2256 rc = Tcl_EvalObjEx(interp, pScript, 0);
2259 if( rc==TCL_ERROR ){
2265 if( sqlite3_exec(pDb->db, zEnd, 0, 0, 0) ){
2266 sqlite3_exec(pDb->db, "ROLLBACK", 0, 0, 0);
2274 ** $db update_hook ?script?
2275 ** $db rollback_hook ?script?
2277 case DB_UPDATE_HOOK:
2278 case DB_ROLLBACK_HOOK: {
2280 /* set ppHook to point at pUpdateHook or pRollbackHook, depending on
2281 ** whether [$db update_hook] or [$db rollback_hook] was invoked.
2284 if( choice==DB_UPDATE_HOOK ){
2285 ppHook = &pDb->pUpdateHook;
2287 ppHook = &pDb->pRollbackHook;
2290 if( objc!=2 && objc!=3 ){
2291 Tcl_WrongNumArgs(interp, 2, objv, "?SCRIPT?");
2295 Tcl_SetObjResult(interp, *ppHook);
2297 Tcl_DecrRefCount(*ppHook);
2302 assert( !(*ppHook) );
2303 if( Tcl_GetCharLength(objv[2])>0 ){
2305 Tcl_IncrRefCount(*ppHook);
2309 sqlite3_update_hook(pDb->db, (pDb->pUpdateHook?DbUpdateHandler:0), pDb);
2310 sqlite3_rollback_hook(pDb->db,(pDb->pRollbackHook?DbRollbackHandler:0),pDb);
2317 ** Return the version string for this database.
2320 Tcl_SetResult(interp, (char *)sqlite3_libversion(), TCL_STATIC);
2325 } /* End of the SWITCH statement */
2330 ** sqlite3 DBNAME FILENAME ?-vfs VFSNAME? ?-key KEY? ?-readonly BOOLEAN?
2331 ** ?-create BOOLEAN? ?-nomutex BOOLEAN?
2333 ** This is the main Tcl command. When the "sqlite" Tcl command is
2334 ** invoked, this routine runs to process that command.
2336 ** The first argument, DBNAME, is an arbitrary name for a new
2337 ** database connection. This command creates a new command named
2338 ** DBNAME that is used to control that connection. The database
2339 ** connection is deleted when the DBNAME command is deleted.
2341 ** The second argument is the name of the database file.
2344 static int DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
2352 const char *zVfs = 0;
2353 int flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_NOMUTEX;
2354 Tcl_DString translatedFilename;
2356 zArg = Tcl_GetStringFromObj(objv[1], 0);
2357 if( strcmp(zArg,"-version")==0 ){
2358 Tcl_AppendResult(interp,sqlite3_version,0);
2361 if( strcmp(zArg,"-has-codec")==0 ){
2362 #ifdef SQLITE_HAS_CODEC
2363 Tcl_AppendResult(interp,"1",0);
2365 Tcl_AppendResult(interp,"0",0);
2370 for(i=3; i+1<objc; i+=2){
2371 zArg = Tcl_GetString(objv[i]);
2372 if( strcmp(zArg,"-key")==0 ){
2373 pKey = Tcl_GetByteArrayFromObj(objv[i+1], &nKey);
2374 }else if( strcmp(zArg, "-vfs")==0 ){
2376 zVfs = Tcl_GetString(objv[i]);
2377 }else if( strcmp(zArg, "-readonly")==0 ){
2379 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
2381 flags &= ~(SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE);
2382 flags |= SQLITE_OPEN_READONLY;
2384 flags &= ~SQLITE_OPEN_READONLY;
2385 flags |= SQLITE_OPEN_READWRITE;
2387 }else if( strcmp(zArg, "-create")==0 ){
2389 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
2390 if( b && (flags & SQLITE_OPEN_READONLY)==0 ){
2391 flags |= SQLITE_OPEN_CREATE;
2393 flags &= ~SQLITE_OPEN_CREATE;
2395 }else if( strcmp(zArg, "-nomutex")==0 ){
2397 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
2399 flags |= SQLITE_OPEN_NOMUTEX;
2400 flags &= ~SQLITE_OPEN_FULLMUTEX;
2402 flags &= ~SQLITE_OPEN_NOMUTEX;
2404 }else if( strcmp(zArg, "-fullmutex")==0 ){
2406 if( Tcl_GetBooleanFromObj(interp, objv[i+1], &b) ) return TCL_ERROR;
2408 flags |= SQLITE_OPEN_FULLMUTEX;
2409 flags &= ~SQLITE_OPEN_NOMUTEX;
2411 flags &= ~SQLITE_OPEN_FULLMUTEX;
2414 Tcl_AppendResult(interp, "unknown option: ", zArg, (char*)0);
2418 if( objc<3 || (objc&1)!=1 ){
2419 Tcl_WrongNumArgs(interp, 1, objv,
2420 "HANDLE FILENAME ?-vfs VFSNAME? ?-readonly BOOLEAN? ?-create BOOLEAN?"
2421 " ?-nomutex BOOLEAN? ?-fullmutex BOOLEAN?"
2422 #ifdef SQLITE_HAS_CODEC
2429 p = (SqliteDb*)Tcl_Alloc( sizeof(*p) );
2431 Tcl_SetResult(interp, "malloc failed", TCL_STATIC);
2434 memset(p, 0, sizeof(*p));
2435 zFile = Tcl_GetStringFromObj(objv[2], 0);
2436 zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename);
2437 sqlite3_open_v2(zFile, &p->db, flags, zVfs);
2438 Tcl_DStringFree(&translatedFilename);
2439 if( SQLITE_OK!=sqlite3_errcode(p->db) ){
2440 zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(p->db));
2441 sqlite3_close(p->db);
2444 #ifdef SQLITE_HAS_CODEC
2446 sqlite3_key(p->db, pKey, nKey);
2450 Tcl_SetResult(interp, zErrMsg, TCL_VOLATILE);
2452 sqlite3_free(zErrMsg);
2455 p->maxStmt = NUM_PREPARED_STMTS;
2457 zArg = Tcl_GetStringFromObj(objv[1], 0);
2458 Tcl_CreateObjCommand(interp, zArg, DbObjCmd, (char*)p, DbDeleteCmd);
2463 ** Provide a dummy Tcl_InitStubs if we are using this as a static
2466 #ifndef USE_TCL_STUBS
2467 # undef Tcl_InitStubs
2468 # define Tcl_InitStubs(a,b,c)
2472 ** Make sure we have a PACKAGE_VERSION macro defined. This will be
2473 ** defined automatically by the TEA makefile. But other makefiles
2474 ** do not define it.
2476 #ifndef PACKAGE_VERSION
2477 # define PACKAGE_VERSION SQLITE_VERSION
2481 ** Initialize this module.
2483 ** This Tcl module contains only a single new Tcl command named "sqlite".
2484 ** (Hence there is no namespace. There is no point in using a namespace
2485 ** if the extension only supplies one new name!) The "sqlite" command is
2486 ** used to open a new SQLite database. See the DbMain() routine above
2487 ** for additional information.
2489 EXTERN int Sqlite3_Init(Tcl_Interp *interp){
2490 Tcl_InitStubs(interp, "8.4", 0);
2491 Tcl_CreateObjCommand(interp, "sqlite3", (Tcl_ObjCmdProc*)DbMain, 0, 0);
2492 Tcl_PkgProvide(interp, "sqlite3", PACKAGE_VERSION);
2493 Tcl_CreateObjCommand(interp, "sqlite", (Tcl_ObjCmdProc*)DbMain, 0, 0);
2494 Tcl_PkgProvide(interp, "sqlite", PACKAGE_VERSION);
2497 EXTERN int Tclsqlite3_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
2498 EXTERN int Sqlite3_SafeInit(Tcl_Interp *interp){ return TCL_OK; }
2499 EXTERN int Tclsqlite3_SafeInit(Tcl_Interp *interp){ return TCL_OK; }
2500 EXTERN int Sqlite3_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
2501 EXTERN int Tclsqlite3_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
2502 EXTERN int Sqlite3_SafeUnload(Tcl_Interp *interp, int flags){ return TCL_OK; }
2503 EXTERN int Tclsqlite3_SafeUnload(Tcl_Interp *interp, int flags){ return TCL_OK;}
2506 #ifndef SQLITE_3_SUFFIX_ONLY
2507 EXTERN int Sqlite_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
2508 EXTERN int Tclsqlite_Init(Tcl_Interp *interp){ return Sqlite3_Init(interp); }
2509 EXTERN int Sqlite_SafeInit(Tcl_Interp *interp){ return TCL_OK; }
2510 EXTERN int Tclsqlite_SafeInit(Tcl_Interp *interp){ return TCL_OK; }
2511 EXTERN int Sqlite_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
2512 EXTERN int Tclsqlite_Unload(Tcl_Interp *interp, int flags){ return TCL_OK; }
2513 EXTERN int Sqlite_SafeUnload(Tcl_Interp *interp, int flags){ return TCL_OK; }
2514 EXTERN int Tclsqlite_SafeUnload(Tcl_Interp *interp, int flags){ return TCL_OK;}
2518 /*****************************************************************************
2519 ** The code that follows is used to build standalone TCL interpreters
2520 ** that are statically linked with SQLite.
2524 ** If the macro TCLSH is one, then put in code this for the
2525 ** "main" routine that will initialize Tcl and take input from
2526 ** standard input, or if a file is named on the command line
2527 ** the TCL interpreter reads and evaluates that file.
2530 static char zMainloop[] =
2532 "while {![eof stdin]} {\n"
2533 "if {$line!=\"\"} {\n"
2534 "puts -nonewline \"> \"\n"
2536 "puts -nonewline \"% \"\n"
2539 "append line [gets stdin]\n"
2540 "if {[info complete $line]} {\n"
2541 "if {[catch {uplevel #0 $line} result]} {\n"
2542 "puts stderr \"Error: $result\"\n"
2543 "} elseif {$result!=\"\"} {\n"
2555 ** If the macro TCLSH is two, then get the main loop code out of
2556 ** the separate file "spaceanal_tcl.h".
2559 static char zMainloop[] =
2560 #include "spaceanal_tcl.h"
2564 #define TCLSH_MAIN main /* Needed to fake out mktclapp */
2565 int TCLSH_MAIN(int argc, char **argv){
2567 #if defined(__SYMBIAN32__)
2568 int isChildProcess = 0;
2573 PrintS("###TclSqlite3: New instance");
2574 Tcl_FindExecutable(argv[0]);
2575 PrintS("###TclSqlite3: Create interpreter");
2576 interp = Tcl_CreateInterp();
2577 #if defined(__SYMBIAN32__)
2578 PrintS("###TclSqlite3: Child process init");
2579 if (ChildProcessInit(&argc, &argv))
2587 err = CopyTestFiles();
2590 PrintS("###TclSqlite3: Exit-1");
2595 PrintS("###TclSqlite3: Init");
2596 Sqlite3_Init(interp);
2599 extern int Md5_Init(Tcl_Interp*);
2600 extern int Sqliteconfig_Init(Tcl_Interp*);
2601 extern int Sqlitetest1_Init(Tcl_Interp*);
2602 extern int Sqlitetest2_Init(Tcl_Interp*);
2603 extern int Sqlitetest3_Init(Tcl_Interp*);
2604 extern int Sqlitetest4_Init(Tcl_Interp*);
2605 extern int Sqlitetest5_Init(Tcl_Interp*);
2606 extern int Sqlitetest6_Init(Tcl_Interp*);
2607 extern int Sqlitetest7_Init(Tcl_Interp*);
2608 extern int Sqlitetest8_Init(Tcl_Interp*);
2609 extern int Sqlitetest9_Init(Tcl_Interp*);
2610 extern int Sqlitetestasync_Init(Tcl_Interp*);
2611 extern int Sqlitetest_autoext_Init(Tcl_Interp*);
2612 extern int Sqlitetest_func_Init(Tcl_Interp*);
2613 extern int Sqlitetest_hexio_Init(Tcl_Interp*);
2614 extern int Sqlitetest_malloc_Init(Tcl_Interp*);
2615 extern int Sqlitetest_mutex_Init(Tcl_Interp*);
2616 extern int Sqlitetestschema_Init(Tcl_Interp*);
2617 extern int Sqlitetestsse_Init(Tcl_Interp*);
2618 extern int Sqlitetesttclvar_Init(Tcl_Interp*);
2619 extern int SqlitetestThread_Init(Tcl_Interp*);
2620 extern int SqlitetestOnefile_Init();
2621 extern int SqlitetestOsinst_Init(Tcl_Interp*);
2624 Sqliteconfig_Init(interp);
2625 Sqlitetest1_Init(interp);
2626 Sqlitetest2_Init(interp);
2627 Sqlitetest3_Init(interp);
2628 Sqlitetest4_Init(interp);
2629 Sqlitetest5_Init(interp);
2630 Sqlitetest6_Init(interp);
2631 Sqlitetest7_Init(interp);
2632 Sqlitetest8_Init(interp);
2633 Sqlitetest9_Init(interp);
2634 Sqlitetestasync_Init(interp);
2635 Sqlitetest_autoext_Init(interp);
2636 Sqlitetest_func_Init(interp);
2637 Sqlitetest_hexio_Init(interp);
2638 Sqlitetest_malloc_Init(interp);
2639 Sqlitetest_mutex_Init(interp);
2640 Sqlitetestschema_Init(interp);
2641 Sqlitetesttclvar_Init(interp);
2642 SqlitetestThread_Init(interp);
2643 SqlitetestOnefile_Init(interp);
2644 SqlitetestOsinst_Init(interp);
2647 Sqlitetestsse_Init(interp);
2651 if( argc>=2 || TCLSH==2 ){
2654 sqlite3_snprintf(sizeof(zArgc), zArgc, "%d", argc-(3-TCLSH));
2655 Tcl_SetVar(interp,"argc", zArgc, TCL_GLOBAL_ONLY);
2656 Tcl_SetVar(interp,"argv0",argv[1],TCL_GLOBAL_ONLY);
2657 Tcl_SetVar(interp,"argv", "", TCL_GLOBAL_ONLY);
2658 for(i=3-TCLSH; i<argc; i++){
2659 Tcl_SetVar(interp, "argv", argv[i],
2660 TCL_GLOBAL_ONLY | TCL_LIST_ELEMENT | TCL_APPEND_VALUE);
2662 #ifdef __SYMBIAN32__
2663 Tcl_CreateObjCommand(interp, "delete_test_files", (Tcl_ObjCmdProc*)DeleteTestFiles, 0, 0);
2664 Tcl_CreateObjCommand(interp, "print_text", (Tcl_ObjCmdProc*)PrintText, 0, 0);
2666 PrintS("###TclSqlite3: Tests begin");
2667 if( TCLSH==1 && Tcl_EvalFile(interp, argv[1])!=TCL_OK ){
2669 const char *zInfo = Tcl_GetVar(interp, "errorInfo", TCL_GLOBAL_ONLY);
2671 zInfo = interp->result;
2672 sprintf(errMsg, "###TclSqlite3: Error, argv=%s, zInfo=%s", *argv, zInfo);
2674 #ifdef __SYMBIAN32__
2675 ChildProcessCleanup(isChildProcess, oldArgc, argv);
2677 PrintS("###TclSqlite3: Exit-2");
2680 PrintS("###TclSqlite3: Tests end");
2682 if( argc<=1 || TCLSH==2 ){
2683 Tcl_GlobalEval(interp, zMainloop);
2685 #if defined(__SYMBIAN32__)
2686 ChildProcessCleanup(isChildProcess, oldArgc, argv);
2688 PrintS("###TclSqlite3: Exit-3");