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 ** A TCL Interface to SQLite. Append this file to sqlite3.c and
13 ** compile the whole thing to build a TCL-enabled version of SQLite.
15 ** Compile-time options:
17 ** -DTCLSH=1 Add a "main()" routine that works as a tclsh.
19 ** -DSQLITE_TCLMD5 When used in conjuction with -DTCLSH=1, add
20 ** four new commands to the TCL interpreter for
21 ** generating MD5 checksums: md5, md5file,
22 ** md5-10x8, and md5file-10x8.
24 ** -DSQLITE_TEST When used in conjuction with -DTCLSH=1, add
25 ** hundreds of new commands used for testing
26 ** SQLite. This option implies -DSQLITE_TCLMD5.
32 ** Some additional include files are needed if this file is not
33 ** appended to the amalgamation.
35 #ifndef SQLITE_AMALGAMATION
40 typedef unsigned char u8
;
45 * Windows needs to know which symbols to export. Unix does not.
46 * BUILD_sqlite should be undefined for Unix.
49 #undef TCL_STORAGE_CLASS
50 #define TCL_STORAGE_CLASS DLLEXPORT
51 #endif /* BUILD_sqlite */
53 #define NUM_PREPARED_STMTS 10
54 #define MAX_PREPARED_STMTS 100
57 ** If TCL uses UTF-8 and SQLite is configured to use iso8859, then we
58 ** have to do a translation when going between the two. Set the
59 ** UTF_TRANSLATION_NEEDED macro to indicate that we need to do
62 #if defined(TCL_UTF_MAX) && !defined(SQLITE_UTF8)
63 # define UTF_TRANSLATION_NEEDED 1
67 ** New SQL functions can be created as TCL scripts. Each such function
68 ** is described by an instance of the following structure.
70 typedef struct SqlFunc SqlFunc
;
72 Tcl_Interp
*interp
; /* The TCL interpret to execute the function */
73 Tcl_Obj
*pScript
; /* The Tcl_Obj representation of the script */
74 int useEvalObjv
; /* True if it is safe to use Tcl_EvalObjv */
75 char *zName
; /* Name of this function */
76 SqlFunc
*pNext
; /* Next function on the list of them all */
80 ** New collation sequences function can be created as TCL scripts. Each such
81 ** function is described by an instance of the following structure.
83 typedef struct SqlCollate SqlCollate
;
85 Tcl_Interp
*interp
; /* The TCL interpret to execute the function */
86 char *zScript
; /* The script to be run */
87 SqlCollate
*pNext
; /* Next function on the list of them all */
91 ** Prepared statements are cached for faster execution. Each prepared
92 ** statement is described by an instance of the following structure.
94 typedef struct SqlPreparedStmt SqlPreparedStmt
;
95 struct SqlPreparedStmt
{
96 SqlPreparedStmt
*pNext
; /* Next in linked list */
97 SqlPreparedStmt
*pPrev
; /* Previous on the list */
98 sqlite3_stmt
*pStmt
; /* The prepared statement */
99 int nSql
; /* chars in zSql[] */
100 const char *zSql
; /* Text of the SQL statement */
101 int nParm
; /* Size of apParm array */
102 Tcl_Obj
**apParm
; /* Array of referenced object pointers */
105 typedef struct IncrblobChannel IncrblobChannel
;
108 ** There is one instance of this structure for each SQLite database
109 ** that has been opened by the SQLite TCL interface.
111 ** If this module is built with SQLITE_TEST defined (to create the SQLite
112 ** testfixture executable), then it may be configured to use either
113 ** sqlite3_prepare_v2() or sqlite3_prepare() to prepare SQL statements.
114 ** If SqliteDb.bLegacyPrepare is true, sqlite3_prepare() is used.
116 typedef struct SqliteDb SqliteDb
;
118 sqlite3
*db
; /* The "real" database structure. MUST BE FIRST */
119 Tcl_Interp
*interp
; /* The interpreter used for this database */
120 char *zBusy
; /* The busy callback routine */
121 char *zCommit
; /* The commit hook callback routine */
122 char *zTrace
; /* The trace callback routine */
123 char *zProfile
; /* The profile callback routine */
124 char *zProgress
; /* The progress callback routine */
125 char *zAuth
; /* The authorization callback routine */
126 int disableAuth
; /* Disable the authorizer if it exists */
127 char *zNull
; /* Text to substitute for an SQL NULL value */
128 SqlFunc
*pFunc
; /* List of SQL functions */
129 Tcl_Obj
*pUpdateHook
; /* Update hook script (if any) */
130 Tcl_Obj
*pRollbackHook
; /* Rollback hook script (if any) */
131 Tcl_Obj
*pWalHook
; /* WAL hook script (if any) */
132 Tcl_Obj
*pUnlockNotify
; /* Unlock notify script (if any) */
133 SqlCollate
*pCollate
; /* List of SQL collation functions */
134 int rc
; /* Return code of most recent sqlite3_exec() */
135 Tcl_Obj
*pCollateNeeded
; /* Collation needed script */
136 SqlPreparedStmt
*stmtList
; /* List of prepared statements*/
137 SqlPreparedStmt
*stmtLast
; /* Last statement in the list */
138 int maxStmt
; /* The next maximum number of stmtList */
139 int nStmt
; /* Number of statements in stmtList */
140 IncrblobChannel
*pIncrblob
;/* Linked list of open incrblob channels */
141 int nStep
, nSort
, nIndex
; /* Statistics for most recent operation */
142 int nTransaction
; /* Number of nested [transaction] methods */
144 int bLegacyPrepare
; /* True to use sqlite3_prepare() */
148 struct IncrblobChannel
{
149 sqlite3_blob
*pBlob
; /* sqlite3 blob handle */
150 SqliteDb
*pDb
; /* Associated database connection */
151 int iSeek
; /* Current seek offset */
152 Tcl_Channel channel
; /* Channel identifier */
153 IncrblobChannel
*pNext
; /* Linked list of all open incrblob channels */
154 IncrblobChannel
*pPrev
; /* Linked list of all open incrblob channels */
158 ** Compute a string length that is limited to what can be stored in
159 ** lower 30 bits of a 32-bit signed integer.
161 static int strlen30(const char *z
){
163 while( *z2
){ z2
++; }
164 return 0x3fffffff & (int)(z2
- z
);
168 #ifndef SQLITE_OMIT_INCRBLOB
170 ** Close all incrblob channels opened using database connection pDb.
171 ** This is called when shutting down the database connection.
173 static void closeIncrblobChannels(SqliteDb
*pDb
){
175 IncrblobChannel
*pNext
;
177 for(p
=pDb
->pIncrblob
; p
; p
=pNext
){
180 /* Note: Calling unregister here call Tcl_Close on the incrblob channel,
181 ** which deletes the IncrblobChannel structure at *p. So do not
182 ** call Tcl_Free() here.
184 Tcl_UnregisterChannel(pDb
->interp
, p
->channel
);
189 ** Close an incremental blob channel.
191 static int incrblobClose(ClientData instanceData
, Tcl_Interp
*interp
){
192 IncrblobChannel
*p
= (IncrblobChannel
*)instanceData
;
193 int rc
= sqlite3_blob_close(p
->pBlob
);
194 sqlite3
*db
= p
->pDb
->db
;
196 /* Remove the channel from the SqliteDb.pIncrblob list. */
198 p
->pNext
->pPrev
= p
->pPrev
;
201 p
->pPrev
->pNext
= p
->pNext
;
203 if( p
->pDb
->pIncrblob
==p
){
204 p
->pDb
->pIncrblob
= p
->pNext
;
207 /* Free the IncrblobChannel structure */
211 Tcl_SetResult(interp
, (char *)sqlite3_errmsg(db
), TCL_VOLATILE
);
218 ** Read data from an incremental blob channel.
220 static int incrblobInput(
221 ClientData instanceData
,
226 IncrblobChannel
*p
= (IncrblobChannel
*)instanceData
;
227 int nRead
= bufSize
; /* Number of bytes to read */
228 int nBlob
; /* Total size of the blob */
229 int rc
; /* sqlite error code */
231 nBlob
= sqlite3_blob_bytes(p
->pBlob
);
232 if( (p
->iSeek
+nRead
)>nBlob
){
233 nRead
= nBlob
-p
->iSeek
;
239 rc
= sqlite3_blob_read(p
->pBlob
, (void *)buf
, nRead
, p
->iSeek
);
250 ** Write data to an incremental blob channel.
252 static int incrblobOutput(
253 ClientData instanceData
,
258 IncrblobChannel
*p
= (IncrblobChannel
*)instanceData
;
259 int nWrite
= toWrite
; /* Number of bytes to write */
260 int nBlob
; /* Total size of the blob */
261 int rc
; /* sqlite error code */
263 nBlob
= sqlite3_blob_bytes(p
->pBlob
);
264 if( (p
->iSeek
+nWrite
)>nBlob
){
265 *errorCodePtr
= EINVAL
;
272 rc
= sqlite3_blob_write(p
->pBlob
, (void *)buf
, nWrite
, p
->iSeek
);
283 ** Seek an incremental blob channel.
285 static int incrblobSeek(
286 ClientData instanceData
,
291 IncrblobChannel
*p
= (IncrblobChannel
*)instanceData
;
301 p
->iSeek
= sqlite3_blob_bytes(p
->pBlob
) + offset
;
304 default: assert(!"Bad seekMode");
311 static void incrblobWatch(ClientData instanceData
, int mode
){
314 static int incrblobHandle(ClientData instanceData
, int dir
, ClientData
*hPtr
){
318 static Tcl_ChannelType IncrblobChannelType
= {
319 "incrblob", /* typeName */
320 TCL_CHANNEL_VERSION_2
, /* version */
321 incrblobClose
, /* closeProc */
322 incrblobInput
, /* inputProc */
323 incrblobOutput
, /* outputProc */
324 incrblobSeek
, /* seekProc */
325 0, /* setOptionProc */
326 0, /* getOptionProc */
327 incrblobWatch
, /* watchProc (this is a no-op) */
328 incrblobHandle
, /* getHandleProc (always returns error) */
330 0, /* blockModeProc */
333 0, /* wideSeekProc */
337 ** Create a new incrblob channel.
339 static int createIncrblobChannel(
349 sqlite3
*db
= pDb
->db
;
352 int flags
= TCL_READABLE
|(isReadonly
? 0 : TCL_WRITABLE
);
354 /* This variable is used to name the channels: "incrblob_[incr count]" */
355 static int count
= 0;
358 rc
= sqlite3_blob_open(db
, zDb
, zTable
, zColumn
, iRow
, !isReadonly
, &pBlob
);
360 Tcl_SetResult(interp
, (char *)sqlite3_errmsg(pDb
->db
), TCL_VOLATILE
);
364 p
= (IncrblobChannel
*)Tcl_Alloc(sizeof(IncrblobChannel
));
368 sqlite3_snprintf(sizeof(zChannel
), zChannel
, "incrblob_%d", ++count
);
369 p
->channel
= Tcl_CreateChannel(&IncrblobChannelType
, zChannel
, p
, flags
);
370 Tcl_RegisterChannel(interp
, p
->channel
);
372 /* Link the new channel into the SqliteDb.pIncrblob list. */
373 p
->pNext
= pDb
->pIncrblob
;
381 Tcl_SetResult(interp
, (char *)Tcl_GetChannelName(p
->channel
), TCL_VOLATILE
);
384 #else /* else clause for "#ifndef SQLITE_OMIT_INCRBLOB" */
385 #define closeIncrblobChannels(pDb)
389 ** Look at the script prefix in pCmd. We will be executing this script
390 ** after first appending one or more arguments. This routine analyzes
391 ** the script to see if it is safe to use Tcl_EvalObjv() on the script
392 ** rather than the more general Tcl_EvalEx(). Tcl_EvalObjv() is much
395 ** Scripts that are safe to use with Tcl_EvalObjv() consists of a
396 ** command name followed by zero or more arguments with no [...] or $
397 ** or {...} or ; to be seen anywhere. Most callback scripts consist
398 ** of just a single procedure name and they meet this requirement.
400 static int safeToUseEvalObjv(Tcl_Interp
*interp
, Tcl_Obj
*pCmd
){
401 /* We could try to do something with Tcl_Parse(). But we will instead
402 ** just do a search for forbidden characters. If any of the forbidden
403 ** characters appear in pCmd, we will report the string as unsafe.
407 z
= Tcl_GetStringFromObj(pCmd
, &n
);
410 if( c
=='$' || c
=='[' || c
==';' ) return 0;
416 ** Find an SqlFunc structure with the given name. Or create a new
417 ** one if an existing one cannot be found. Return a pointer to the
420 static SqlFunc
*findSqlFunc(SqliteDb
*pDb
, const char *zName
){
423 pNew
= (SqlFunc
*)Tcl_Alloc( sizeof(*pNew
) + strlen30(zName
) + 1 );
424 pNew
->zName
= (char*)&pNew
[1];
425 for(i
=0; zName
[i
]; i
++){ pNew
->zName
[i
] = tolower(zName
[i
]); }
427 for(p
=pDb
->pFunc
; p
; p
=p
->pNext
){
428 if( strcmp(p
->zName
, pNew
->zName
)==0 ){
429 Tcl_Free((char*)pNew
);
433 pNew
->interp
= pDb
->interp
;
435 pNew
->pNext
= pDb
->pFunc
;
441 ** Free a single SqlPreparedStmt object.
443 static void dbFreeStmt(SqlPreparedStmt
*pStmt
){
445 if( sqlite3_sql(pStmt
->pStmt
)==0 ){
446 Tcl_Free((char *)pStmt
->zSql
);
449 sqlite3_finalize(pStmt
->pStmt
);
450 Tcl_Free((char *)pStmt
);
454 ** Finalize and free a list of prepared statements
456 static void flushStmtCache(SqliteDb
*pDb
){
457 SqlPreparedStmt
*pPreStmt
;
458 SqlPreparedStmt
*pNext
;
460 for(pPreStmt
= pDb
->stmtList
; pPreStmt
; pPreStmt
=pNext
){
461 pNext
= pPreStmt
->pNext
;
462 dbFreeStmt(pPreStmt
);
470 ** TCL calls this procedure when an sqlite3 database command is
473 static void DbDeleteCmd(void *db
){
474 SqliteDb
*pDb
= (SqliteDb
*)db
;
476 closeIncrblobChannels(pDb
);
477 sqlite3_close(pDb
->db
);
479 SqlFunc
*pFunc
= pDb
->pFunc
;
480 pDb
->pFunc
= pFunc
->pNext
;
481 Tcl_DecrRefCount(pFunc
->pScript
);
482 Tcl_Free((char*)pFunc
);
484 while( pDb
->pCollate
){
485 SqlCollate
*pCollate
= pDb
->pCollate
;
486 pDb
->pCollate
= pCollate
->pNext
;
487 Tcl_Free((char*)pCollate
);
490 Tcl_Free(pDb
->zBusy
);
493 Tcl_Free(pDb
->zTrace
);
496 Tcl_Free(pDb
->zProfile
);
499 Tcl_Free(pDb
->zAuth
);
502 Tcl_Free(pDb
->zNull
);
504 if( pDb
->pUpdateHook
){
505 Tcl_DecrRefCount(pDb
->pUpdateHook
);
507 if( pDb
->pRollbackHook
){
508 Tcl_DecrRefCount(pDb
->pRollbackHook
);
511 Tcl_DecrRefCount(pDb
->pWalHook
);
513 if( pDb
->pCollateNeeded
){
514 Tcl_DecrRefCount(pDb
->pCollateNeeded
);
516 Tcl_Free((char*)pDb
);
520 ** This routine is called when a database file is locked while trying
523 static int DbBusyHandler(void *cd
, int nTries
){
524 SqliteDb
*pDb
= (SqliteDb
*)cd
;
528 sqlite3_snprintf(sizeof(zVal
), zVal
, "%d", nTries
);
529 rc
= Tcl_VarEval(pDb
->interp
, pDb
->zBusy
, " ", zVal
, (char*)0);
530 if( rc
!=TCL_OK
|| atoi(Tcl_GetStringResult(pDb
->interp
)) ){
536 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK
538 ** This routine is invoked as the 'progress callback' for the database.
540 static int DbProgressHandler(void *cd
){
541 SqliteDb
*pDb
= (SqliteDb
*)cd
;
544 assert( pDb
->zProgress
);
545 rc
= Tcl_Eval(pDb
->interp
, pDb
->zProgress
);
546 if( rc
!=TCL_OK
|| atoi(Tcl_GetStringResult(pDb
->interp
)) ){
553 #ifndef SQLITE_OMIT_TRACE
555 ** This routine is called by the SQLite trace handler whenever a new
556 ** block of SQL is executed. The TCL script in pDb->zTrace is executed.
558 static void DbTraceHandler(void *cd
, const char *zSql
){
559 SqliteDb
*pDb
= (SqliteDb
*)cd
;
562 Tcl_DStringInit(&str
);
563 Tcl_DStringAppend(&str
, pDb
->zTrace
, -1);
564 Tcl_DStringAppendElement(&str
, zSql
);
565 Tcl_Eval(pDb
->interp
, Tcl_DStringValue(&str
));
566 Tcl_DStringFree(&str
);
567 Tcl_ResetResult(pDb
->interp
);
571 #ifndef SQLITE_OMIT_TRACE
573 ** This routine is called by the SQLite profile handler after a statement
574 ** SQL has executed. The TCL script in pDb->zProfile is evaluated.
576 static void DbProfileHandler(void *cd
, const char *zSql
, sqlite_uint64 tm
){
577 SqliteDb
*pDb
= (SqliteDb
*)cd
;
581 sqlite3_snprintf(sizeof(zTm
)-1, zTm
, "%lld", tm
);
582 Tcl_DStringInit(&str
);
583 Tcl_DStringAppend(&str
, pDb
->zProfile
, -1);
584 Tcl_DStringAppendElement(&str
, zSql
);
585 Tcl_DStringAppendElement(&str
, zTm
);
586 Tcl_Eval(pDb
->interp
, Tcl_DStringValue(&str
));
587 Tcl_DStringFree(&str
);
588 Tcl_ResetResult(pDb
->interp
);
593 ** This routine is called when a transaction is committed. The
594 ** TCL script in pDb->zCommit is executed. If it returns non-zero or
595 ** if it throws an exception, the transaction is rolled back instead
596 ** of being committed.
598 static int DbCommitHandler(void *cd
){
599 SqliteDb
*pDb
= (SqliteDb
*)cd
;
602 rc
= Tcl_Eval(pDb
->interp
, pDb
->zCommit
);
603 if( rc
!=TCL_OK
|| atoi(Tcl_GetStringResult(pDb
->interp
)) ){
609 static void DbRollbackHandler(void *clientData
){
610 SqliteDb
*pDb
= (SqliteDb
*)clientData
;
611 assert(pDb
->pRollbackHook
);
612 if( TCL_OK
!=Tcl_EvalObjEx(pDb
->interp
, pDb
->pRollbackHook
, 0) ){
613 Tcl_BackgroundError(pDb
->interp
);
618 ** This procedure handles wal_hook callbacks.
620 static int DbWalHandler(
628 SqliteDb
*pDb
= (SqliteDb
*)clientData
;
629 Tcl_Interp
*interp
= pDb
->interp
;
630 assert(pDb
->pWalHook
);
632 p
= Tcl_DuplicateObj(pDb
->pWalHook
);
634 Tcl_ListObjAppendElement(interp
, p
, Tcl_NewStringObj(zDb
, -1));
635 Tcl_ListObjAppendElement(interp
, p
, Tcl_NewIntObj(nEntry
));
636 if( TCL_OK
!=Tcl_EvalObjEx(interp
, p
, 0)
637 || TCL_OK
!=Tcl_GetIntFromObj(interp
, Tcl_GetObjResult(interp
), &ret
)
639 Tcl_BackgroundError(interp
);
646 #if defined(SQLITE_TEST) && defined(SQLITE_ENABLE_UNLOCK_NOTIFY)
647 static void setTestUnlockNotifyVars(Tcl_Interp
*interp
, int iArg
, int nArg
){
649 sprintf(zBuf
, "%d", iArg
);
650 Tcl_SetVar(interp
, "sqlite_unlock_notify_arg", zBuf
, TCL_GLOBAL_ONLY
);
651 sprintf(zBuf
, "%d", nArg
);
652 Tcl_SetVar(interp
, "sqlite_unlock_notify_argcount", zBuf
, TCL_GLOBAL_ONLY
);
655 # define setTestUnlockNotifyVars(x,y,z)
658 #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
659 static void DbUnlockNotify(void **apArg
, int nArg
){
661 for(i
=0; i
<nArg
; i
++){
662 const int flags
= (TCL_EVAL_GLOBAL
|TCL_EVAL_DIRECT
);
663 SqliteDb
*pDb
= (SqliteDb
*)apArg
[i
];
664 setTestUnlockNotifyVars(pDb
->interp
, i
, nArg
);
665 assert( pDb
->pUnlockNotify
);
666 Tcl_EvalObjEx(pDb
->interp
, pDb
->pUnlockNotify
, flags
);
667 Tcl_DecrRefCount(pDb
->pUnlockNotify
);
668 pDb
->pUnlockNotify
= 0;
673 static void DbUpdateHandler(
680 SqliteDb
*pDb
= (SqliteDb
*)p
;
683 assert( pDb
->pUpdateHook
);
684 assert( op
==SQLITE_INSERT
|| op
==SQLITE_UPDATE
|| op
==SQLITE_DELETE
);
686 pCmd
= Tcl_DuplicateObj(pDb
->pUpdateHook
);
687 Tcl_IncrRefCount(pCmd
);
688 Tcl_ListObjAppendElement(0, pCmd
, Tcl_NewStringObj(
689 ( (op
==SQLITE_INSERT
)?"INSERT":(op
==SQLITE_UPDATE
)?"UPDATE":"DELETE"), -1));
690 Tcl_ListObjAppendElement(0, pCmd
, Tcl_NewStringObj(zDb
, -1));
691 Tcl_ListObjAppendElement(0, pCmd
, Tcl_NewStringObj(zTbl
, -1));
692 Tcl_ListObjAppendElement(0, pCmd
, Tcl_NewWideIntObj(rowid
));
693 Tcl_EvalObjEx(pDb
->interp
, pCmd
, TCL_EVAL_DIRECT
);
694 Tcl_DecrRefCount(pCmd
);
697 static void tclCollateNeeded(
703 SqliteDb
*pDb
= (SqliteDb
*)pCtx
;
704 Tcl_Obj
*pScript
= Tcl_DuplicateObj(pDb
->pCollateNeeded
);
705 Tcl_IncrRefCount(pScript
);
706 Tcl_ListObjAppendElement(0, pScript
, Tcl_NewStringObj(zName
, -1));
707 Tcl_EvalObjEx(pDb
->interp
, pScript
, 0);
708 Tcl_DecrRefCount(pScript
);
712 ** This routine is called to evaluate an SQL collation function implemented
715 static int tclSqlCollate(
722 SqlCollate
*p
= (SqlCollate
*)pCtx
;
725 pCmd
= Tcl_NewStringObj(p
->zScript
, -1);
726 Tcl_IncrRefCount(pCmd
);
727 Tcl_ListObjAppendElement(p
->interp
, pCmd
, Tcl_NewStringObj(zA
, nA
));
728 Tcl_ListObjAppendElement(p
->interp
, pCmd
, Tcl_NewStringObj(zB
, nB
));
729 Tcl_EvalObjEx(p
->interp
, pCmd
, TCL_EVAL_DIRECT
);
730 Tcl_DecrRefCount(pCmd
);
731 return (atoi(Tcl_GetStringResult(p
->interp
)));
735 ** This routine is called to evaluate an SQL function implemented
738 static void tclSqlFunc(sqlite3_context
*context
, int argc
, sqlite3_value
**argv
){
739 SqlFunc
*p
= sqlite3_user_data(context
);
745 /* If there are no arguments to the function, call Tcl_EvalObjEx on the
746 ** script object directly. This allows the TCL compiler to generate
747 ** bytecode for the command on the first invocation and thus make
748 ** subsequent invocations much faster. */
750 Tcl_IncrRefCount(pCmd
);
751 rc
= Tcl_EvalObjEx(p
->interp
, pCmd
, 0);
752 Tcl_DecrRefCount(pCmd
);
754 /* If there are arguments to the function, make a shallow copy of the
755 ** script object, lappend the arguments, then evaluate the copy.
757 ** By "shallow" copy, we mean a only the outer list Tcl_Obj is duplicated.
758 ** The new Tcl_Obj contains pointers to the original list elements.
759 ** That way, when Tcl_EvalObjv() is run and shimmers the first element
760 ** of the list to tclCmdNameType, that alternate representation will
761 ** be preserved and reused on the next invocation.
765 if( Tcl_ListObjGetElements(p
->interp
, p
->pScript
, &nArg
, &aArg
) ){
766 sqlite3_result_error(context
, Tcl_GetStringResult(p
->interp
), -1);
769 pCmd
= Tcl_NewListObj(nArg
, aArg
);
770 Tcl_IncrRefCount(pCmd
);
771 for(i
=0; i
<argc
; i
++){
772 sqlite3_value
*pIn
= argv
[i
];
775 /* Set pVal to contain the i'th column of this row. */
776 switch( sqlite3_value_type(pIn
) ){
778 int bytes
= sqlite3_value_bytes(pIn
);
779 pVal
= Tcl_NewByteArrayObj(sqlite3_value_blob(pIn
), bytes
);
782 case SQLITE_INTEGER
: {
783 sqlite_int64 v
= sqlite3_value_int64(pIn
);
784 if( v
>=-2147483647 && v
<=2147483647 ){
785 pVal
= Tcl_NewIntObj((int)v
);
787 pVal
= Tcl_NewWideIntObj(v
);
792 double r
= sqlite3_value_double(pIn
);
793 pVal
= Tcl_NewDoubleObj(r
);
797 pVal
= Tcl_NewStringObj("", 0);
801 int bytes
= sqlite3_value_bytes(pIn
);
802 pVal
= Tcl_NewStringObj((char *)sqlite3_value_text(pIn
), bytes
);
806 rc
= Tcl_ListObjAppendElement(p
->interp
, pCmd
, pVal
);
808 Tcl_DecrRefCount(pCmd
);
809 sqlite3_result_error(context
, Tcl_GetStringResult(p
->interp
), -1);
813 if( !p
->useEvalObjv
){
814 /* Tcl_EvalObjEx() will automatically call Tcl_EvalObjv() if pCmd
815 ** is a list without a string representation. To prevent this from
816 ** happening, make sure pCmd has a valid string representation */
819 rc
= Tcl_EvalObjEx(p
->interp
, pCmd
, TCL_EVAL_DIRECT
);
820 Tcl_DecrRefCount(pCmd
);
823 if( rc
&& rc
!=TCL_RETURN
){
824 sqlite3_result_error(context
, Tcl_GetStringResult(p
->interp
), -1);
826 Tcl_Obj
*pVar
= Tcl_GetObjResult(p
->interp
);
829 const char *zType
= (pVar
->typePtr
? pVar
->typePtr
->name
: "");
831 if( c
=='b' && strcmp(zType
,"bytearray")==0 && pVar
->bytes
==0 ){
832 /* Only return a BLOB type if the Tcl variable is a bytearray and
833 ** has no string representation. */
834 data
= Tcl_GetByteArrayFromObj(pVar
, &n
);
835 sqlite3_result_blob(context
, data
, n
, SQLITE_TRANSIENT
);
836 }else if( c
=='b' && strcmp(zType
,"boolean")==0 ){
837 Tcl_GetIntFromObj(0, pVar
, &n
);
838 sqlite3_result_int(context
, n
);
839 }else if( c
=='d' && strcmp(zType
,"double")==0 ){
841 Tcl_GetDoubleFromObj(0, pVar
, &r
);
842 sqlite3_result_double(context
, r
);
843 }else if( (c
=='w' && strcmp(zType
,"wideInt")==0) ||
844 (c
=='i' && strcmp(zType
,"int")==0) ){
846 Tcl_GetWideIntFromObj(0, pVar
, &v
);
847 sqlite3_result_int64(context
, v
);
849 data
= (unsigned char *)Tcl_GetStringFromObj(pVar
, &n
);
850 sqlite3_result_text(context
, (char *)data
, n
, SQLITE_TRANSIENT
);
855 #ifndef SQLITE_OMIT_AUTHORIZATION
857 ** This is the authentication function. It appends the authentication
858 ** type code and the two arguments to zCmd[] then invokes the result
859 ** on the interpreter. The reply is examined to determine if the
860 ** authentication fails or succeeds.
862 static int auth_callback(
874 SqliteDb
*pDb
= (SqliteDb
*)pArg
;
875 if( pDb
->disableAuth
) return SQLITE_OK
;
878 case SQLITE_COPY
: zCode
="SQLITE_COPY"; break;
879 case SQLITE_CREATE_INDEX
: zCode
="SQLITE_CREATE_INDEX"; break;
880 case SQLITE_CREATE_TABLE
: zCode
="SQLITE_CREATE_TABLE"; break;
881 case SQLITE_CREATE_TEMP_INDEX
: zCode
="SQLITE_CREATE_TEMP_INDEX"; break;
882 case SQLITE_CREATE_TEMP_TABLE
: zCode
="SQLITE_CREATE_TEMP_TABLE"; break;
883 case SQLITE_CREATE_TEMP_TRIGGER
: zCode
="SQLITE_CREATE_TEMP_TRIGGER"; break;
884 case SQLITE_CREATE_TEMP_VIEW
: zCode
="SQLITE_CREATE_TEMP_VIEW"; break;
885 case SQLITE_CREATE_TRIGGER
: zCode
="SQLITE_CREATE_TRIGGER"; break;
886 case SQLITE_CREATE_VIEW
: zCode
="SQLITE_CREATE_VIEW"; break;
887 case SQLITE_DELETE
: zCode
="SQLITE_DELETE"; break;
888 case SQLITE_DROP_INDEX
: zCode
="SQLITE_DROP_INDEX"; break;
889 case SQLITE_DROP_TABLE
: zCode
="SQLITE_DROP_TABLE"; break;
890 case SQLITE_DROP_TEMP_INDEX
: zCode
="SQLITE_DROP_TEMP_INDEX"; break;
891 case SQLITE_DROP_TEMP_TABLE
: zCode
="SQLITE_DROP_TEMP_TABLE"; break;
892 case SQLITE_DROP_TEMP_TRIGGER
: zCode
="SQLITE_DROP_TEMP_TRIGGER"; break;
893 case SQLITE_DROP_TEMP_VIEW
: zCode
="SQLITE_DROP_TEMP_VIEW"; break;
894 case SQLITE_DROP_TRIGGER
: zCode
="SQLITE_DROP_TRIGGER"; break;
895 case SQLITE_DROP_VIEW
: zCode
="SQLITE_DROP_VIEW"; break;
896 case SQLITE_INSERT
: zCode
="SQLITE_INSERT"; break;
897 case SQLITE_PRAGMA
: zCode
="SQLITE_PRAGMA"; break;
898 case SQLITE_READ
: zCode
="SQLITE_READ"; break;
899 case SQLITE_SELECT
: zCode
="SQLITE_SELECT"; break;
900 case SQLITE_TRANSACTION
: zCode
="SQLITE_TRANSACTION"; break;
901 case SQLITE_UPDATE
: zCode
="SQLITE_UPDATE"; break;
902 case SQLITE_ATTACH
: zCode
="SQLITE_ATTACH"; break;
903 case SQLITE_DETACH
: zCode
="SQLITE_DETACH"; break;
904 case SQLITE_ALTER_TABLE
: zCode
="SQLITE_ALTER_TABLE"; break;
905 case SQLITE_REINDEX
: zCode
="SQLITE_REINDEX"; break;
906 case SQLITE_ANALYZE
: zCode
="SQLITE_ANALYZE"; break;
907 case SQLITE_CREATE_VTABLE
: zCode
="SQLITE_CREATE_VTABLE"; break;
908 case SQLITE_DROP_VTABLE
: zCode
="SQLITE_DROP_VTABLE"; break;
909 case SQLITE_FUNCTION
: zCode
="SQLITE_FUNCTION"; break;
910 case SQLITE_SAVEPOINT
: zCode
="SQLITE_SAVEPOINT"; break;
911 default : zCode
="????"; break;
913 Tcl_DStringInit(&str
);
914 Tcl_DStringAppend(&str
, pDb
->zAuth
, -1);
915 Tcl_DStringAppendElement(&str
, zCode
);
916 Tcl_DStringAppendElement(&str
, zArg1
? zArg1
: "");
917 Tcl_DStringAppendElement(&str
, zArg2
? zArg2
: "");
918 Tcl_DStringAppendElement(&str
, zArg3
? zArg3
: "");
919 Tcl_DStringAppendElement(&str
, zArg4
? zArg4
: "");
920 rc
= Tcl_GlobalEval(pDb
->interp
, Tcl_DStringValue(&str
));
921 Tcl_DStringFree(&str
);
922 zReply
= rc
==TCL_OK
? Tcl_GetStringResult(pDb
->interp
) : "SQLITE_DENY";
923 if( strcmp(zReply
,"SQLITE_OK")==0 ){
925 }else if( strcmp(zReply
,"SQLITE_DENY")==0 ){
927 }else if( strcmp(zReply
,"SQLITE_IGNORE")==0 ){
934 #endif /* SQLITE_OMIT_AUTHORIZATION */
937 ** zText is a pointer to text obtained via an sqlite3_result_text()
938 ** or similar interface. This routine returns a Tcl string object,
939 ** reference count set to 0, containing the text. If a translation
940 ** between iso8859 and UTF-8 is required, it is preformed.
942 static Tcl_Obj
*dbTextToObj(char const *zText
){
944 #ifdef UTF_TRANSLATION_NEEDED
946 Tcl_DStringInit(&dCol
);
947 Tcl_ExternalToUtfDString(NULL
, zText
, -1, &dCol
);
948 pVal
= Tcl_NewStringObj(Tcl_DStringValue(&dCol
), -1);
949 Tcl_DStringFree(&dCol
);
951 pVal
= Tcl_NewStringObj(zText
, -1);
957 ** This routine reads a line of text from FILE in, stores
958 ** the text in memory obtained from malloc() and returns a pointer
959 ** to the text. NULL is returned at end of file, or if malloc()
962 ** The interface is like "readline" but no command-line editing
965 ** copied from shell.c from '.import' command
967 static char *local_getline(char *zPrompt
, FILE *in
){
973 zLine
= malloc( nLine
);
974 if( zLine
==0 ) return 0;
978 nLine
= nLine
*2 + 100;
979 zLine
= realloc(zLine
, nLine
);
980 if( zLine
==0 ) return 0;
982 if( fgets(&zLine
[n
], nLine
- n
, in
)==0 ){
990 while( zLine
[n
] ){ n
++; }
991 if( n
>0 && zLine
[n
-1]=='\n' ){
997 zLine
= realloc( zLine
, n
+1 );
1003 ** This function is part of the implementation of the command:
1005 ** $db transaction [-deferred|-immediate|-exclusive] SCRIPT
1007 ** It is invoked after evaluating the script SCRIPT to commit or rollback
1008 ** the transaction or savepoint opened by the [transaction] command.
1010 static int DbTransPostCmd(
1011 ClientData data
[], /* data[0] is the Sqlite3Db* for $db */
1012 Tcl_Interp
*interp
, /* Tcl interpreter */
1013 int result
/* Result of evaluating SCRIPT */
1015 static const char *azEnd
[] = {
1016 "RELEASE _tcl_transaction", /* rc==TCL_ERROR, nTransaction!=0 */
1017 "COMMIT", /* rc!=TCL_ERROR, nTransaction==0 */
1018 "ROLLBACK TO _tcl_transaction ; RELEASE _tcl_transaction",
1019 "ROLLBACK" /* rc==TCL_ERROR, nTransaction==0 */
1021 SqliteDb
*pDb
= (SqliteDb
*)data
[0];
1025 pDb
->nTransaction
--;
1026 zEnd
= azEnd
[(rc
==TCL_ERROR
)*2 + (pDb
->nTransaction
==0)];
1029 if( sqlite3_exec(pDb
->db
, zEnd
, 0, 0, 0) ){
1030 /* This is a tricky scenario to handle. The most likely cause of an
1031 ** error is that the exec() above was an attempt to commit the
1032 ** top-level transaction that returned SQLITE_BUSY. Or, less likely,
1033 ** that an IO-error has occured. In either case, throw a Tcl exception
1034 ** and try to rollback the transaction.
1036 ** But it could also be that the user executed one or more BEGIN,
1037 ** COMMIT, SAVEPOINT, RELEASE or ROLLBACK commands that are confusing
1038 ** this method's logic. Not clear how this would be best handled.
1040 if( rc
!=TCL_ERROR
){
1041 Tcl_AppendResult(interp
, sqlite3_errmsg(pDb
->db
), 0);
1044 sqlite3_exec(pDb
->db
, "ROLLBACK", 0, 0, 0);
1052 ** Unless SQLITE_TEST is defined, this function is a simple wrapper around
1053 ** sqlite3_prepare_v2(). If SQLITE_TEST is defined, then it uses either
1054 ** sqlite3_prepare_v2() or legacy interface sqlite3_prepare(), depending
1055 ** on whether or not the [db_use_legacy_prepare] command has been used to
1056 ** configure the connection.
1058 static int dbPrepare(
1059 SqliteDb
*pDb
, /* Database object */
1060 const char *zSql
, /* SQL to compile */
1061 sqlite3_stmt
**ppStmt
, /* OUT: Prepared statement */
1062 const char **pzOut
/* OUT: Pointer to next SQL statement */
1065 if( pDb
->bLegacyPrepare
){
1066 return sqlite3_prepare(pDb
->db
, zSql
, -1, ppStmt
, pzOut
);
1069 return sqlite3_prepare_v2(pDb
->db
, zSql
, -1, ppStmt
, pzOut
);
1073 ** Search the cache for a prepared-statement object that implements the
1074 ** first SQL statement in the buffer pointed to by parameter zIn. If
1075 ** no such prepared-statement can be found, allocate and prepare a new
1076 ** one. In either case, bind the current values of the relevant Tcl
1077 ** variables to any $var, :var or @var variables in the statement. Before
1078 ** returning, set *ppPreStmt to point to the prepared-statement object.
1080 ** Output parameter *pzOut is set to point to the next SQL statement in
1081 ** buffer zIn, or to the '\0' byte at the end of zIn if there is no
1084 ** If successful, TCL_OK is returned. Otherwise, TCL_ERROR is returned
1085 ** and an error message loaded into interpreter pDb->interp.
1087 static int dbPrepareAndBind(
1088 SqliteDb
*pDb
, /* Database object */
1089 char const *zIn
, /* SQL to compile */
1090 char const **pzOut
, /* OUT: Pointer to next SQL statement */
1091 SqlPreparedStmt
**ppPreStmt
/* OUT: Object used to cache statement */
1093 const char *zSql
= zIn
; /* Pointer to first SQL statement in zIn */
1094 sqlite3_stmt
*pStmt
; /* Prepared statement object */
1095 SqlPreparedStmt
*pPreStmt
; /* Pointer to cached statement */
1096 int nSql
; /* Length of zSql in bytes */
1097 int nVar
; /* Number of variables in statement */
1098 int iParm
= 0; /* Next free entry in apParm */
1100 Tcl_Interp
*interp
= pDb
->interp
;
1104 /* Trim spaces from the start of zSql and calculate the remaining length. */
1105 while( isspace(zSql
[0]) ){ zSql
++; }
1106 nSql
= strlen30(zSql
);
1108 for(pPreStmt
= pDb
->stmtList
; pPreStmt
; pPreStmt
=pPreStmt
->pNext
){
1109 int n
= pPreStmt
->nSql
;
1111 && memcmp(pPreStmt
->zSql
, zSql
, n
)==0
1112 && (zSql
[n
]==0 || zSql
[n
-1]==';')
1114 pStmt
= pPreStmt
->pStmt
;
1115 *pzOut
= &zSql
[pPreStmt
->nSql
];
1117 /* When a prepared statement is found, unlink it from the
1118 ** cache list. It will later be added back to the beginning
1119 ** of the cache list in order to implement LRU replacement.
1121 if( pPreStmt
->pPrev
){
1122 pPreStmt
->pPrev
->pNext
= pPreStmt
->pNext
;
1124 pDb
->stmtList
= pPreStmt
->pNext
;
1126 if( pPreStmt
->pNext
){
1127 pPreStmt
->pNext
->pPrev
= pPreStmt
->pPrev
;
1129 pDb
->stmtLast
= pPreStmt
->pPrev
;
1132 nVar
= sqlite3_bind_parameter_count(pStmt
);
1137 /* If no prepared statement was found. Compile the SQL text. Also allocate
1138 ** a new SqlPreparedStmt structure. */
1142 if( SQLITE_OK
!=dbPrepare(pDb
, zSql
, &pStmt
, pzOut
) ){
1143 Tcl_SetObjResult(interp
, dbTextToObj(sqlite3_errmsg(pDb
->db
)));
1147 if( SQLITE_OK
!=sqlite3_errcode(pDb
->db
) ){
1148 /* A compile-time error in the statement. */
1149 Tcl_SetObjResult(interp
, dbTextToObj(sqlite3_errmsg(pDb
->db
)));
1152 /* The statement was a no-op. Continue to the next statement
1153 ** in the SQL string.
1159 assert( pPreStmt
==0 );
1160 nVar
= sqlite3_bind_parameter_count(pStmt
);
1161 nByte
= sizeof(SqlPreparedStmt
) + nVar
*sizeof(Tcl_Obj
*);
1162 pPreStmt
= (SqlPreparedStmt
*)Tcl_Alloc(nByte
);
1163 memset(pPreStmt
, 0, nByte
);
1165 pPreStmt
->pStmt
= pStmt
;
1166 pPreStmt
->nSql
= (int)(*pzOut
- zSql
);
1167 pPreStmt
->zSql
= sqlite3_sql(pStmt
);
1168 pPreStmt
->apParm
= (Tcl_Obj
**)&pPreStmt
[1];
1170 if( pPreStmt
->zSql
==0 ){
1171 char *zCopy
= Tcl_Alloc(pPreStmt
->nSql
+ 1);
1172 memcpy(zCopy
, zSql
, pPreStmt
->nSql
);
1173 zCopy
[pPreStmt
->nSql
] = '\0';
1174 pPreStmt
->zSql
= zCopy
;
1179 assert( strlen30(pPreStmt
->zSql
)==pPreStmt
->nSql
);
1180 assert( 0==memcmp(pPreStmt
->zSql
, zSql
, pPreStmt
->nSql
) );
1182 /* Bind values to parameters that begin with $ or : */
1183 for(i
=1; i
<=nVar
; i
++){
1184 const char *zVar
= sqlite3_bind_parameter_name(pStmt
, i
);
1185 if( zVar
!=0 && (zVar
[0]=='$' || zVar
[0]==':' || zVar
[0]=='@') ){
1186 Tcl_Obj
*pVar
= Tcl_GetVar2Ex(interp
, &zVar
[1], 0, 0);
1190 const char *zType
= (pVar
->typePtr
? pVar
->typePtr
->name
: "");
1193 (c
=='b' && strcmp(zType
,"bytearray")==0 && pVar
->bytes
==0) ){
1194 /* Load a BLOB type if the Tcl variable is a bytearray and
1195 ** it has no string representation or the host
1196 ** parameter name begins with "@". */
1197 data
= Tcl_GetByteArrayFromObj(pVar
, &n
);
1198 sqlite3_bind_blob(pStmt
, i
, data
, n
, SQLITE_STATIC
);
1199 Tcl_IncrRefCount(pVar
);
1200 pPreStmt
->apParm
[iParm
++] = pVar
;
1201 }else if( c
=='b' && strcmp(zType
,"boolean")==0 ){
1202 Tcl_GetIntFromObj(interp
, pVar
, &n
);
1203 sqlite3_bind_int(pStmt
, i
, n
);
1204 }else if( c
=='d' && strcmp(zType
,"double")==0 ){
1206 Tcl_GetDoubleFromObj(interp
, pVar
, &r
);
1207 sqlite3_bind_double(pStmt
, i
, r
);
1208 }else if( (c
=='w' && strcmp(zType
,"wideInt")==0) ||
1209 (c
=='i' && strcmp(zType
,"int")==0) ){
1211 Tcl_GetWideIntFromObj(interp
, pVar
, &v
);
1212 sqlite3_bind_int64(pStmt
, i
, v
);
1214 data
= (unsigned char *)Tcl_GetStringFromObj(pVar
, &n
);
1215 sqlite3_bind_text(pStmt
, i
, (char *)data
, n
, SQLITE_STATIC
);
1216 Tcl_IncrRefCount(pVar
);
1217 pPreStmt
->apParm
[iParm
++] = pVar
;
1220 sqlite3_bind_null(pStmt
, i
);
1224 pPreStmt
->nParm
= iParm
;
1225 *ppPreStmt
= pPreStmt
;
1231 ** Release a statement reference obtained by calling dbPrepareAndBind().
1232 ** There should be exactly one call to this function for each call to
1233 ** dbPrepareAndBind().
1235 ** If the discard parameter is non-zero, then the statement is deleted
1236 ** immediately. Otherwise it is added to the LRU list and may be returned
1237 ** by a subsequent call to dbPrepareAndBind().
1239 static void dbReleaseStmt(
1240 SqliteDb
*pDb
, /* Database handle */
1241 SqlPreparedStmt
*pPreStmt
, /* Prepared statement handle to release */
1242 int discard
/* True to delete (not cache) the pPreStmt */
1246 /* Free the bound string and blob parameters */
1247 for(i
=0; i
<pPreStmt
->nParm
; i
++){
1248 Tcl_DecrRefCount(pPreStmt
->apParm
[i
]);
1250 pPreStmt
->nParm
= 0;
1252 if( pDb
->maxStmt
<=0 || discard
){
1253 /* If the cache is turned off, deallocated the statement */
1254 dbFreeStmt(pPreStmt
);
1256 /* Add the prepared statement to the beginning of the cache list. */
1257 pPreStmt
->pNext
= pDb
->stmtList
;
1258 pPreStmt
->pPrev
= 0;
1259 if( pDb
->stmtList
){
1260 pDb
->stmtList
->pPrev
= pPreStmt
;
1262 pDb
->stmtList
= pPreStmt
;
1263 if( pDb
->stmtLast
==0 ){
1264 assert( pDb
->nStmt
==0 );
1265 pDb
->stmtLast
= pPreStmt
;
1267 assert( pDb
->nStmt
>0 );
1271 /* If we have too many statement in cache, remove the surplus from
1272 ** the end of the cache list. */
1273 while( pDb
->nStmt
>pDb
->maxStmt
){
1274 SqlPreparedStmt
*pLast
= pDb
->stmtLast
;
1275 pDb
->stmtLast
= pLast
->pPrev
;
1276 pDb
->stmtLast
->pNext
= 0;
1284 ** Structure used with dbEvalXXX() functions:
1290 ** dbEvalColumnValue()
1292 typedef struct DbEvalContext DbEvalContext
;
1293 struct DbEvalContext
{
1294 SqliteDb
*pDb
; /* Database handle */
1295 Tcl_Obj
*pSql
; /* Object holding string zSql */
1296 const char *zSql
; /* Remaining SQL to execute */
1297 SqlPreparedStmt
*pPreStmt
; /* Current statement */
1298 int nCol
; /* Number of columns returned by pStmt */
1299 Tcl_Obj
*pArray
; /* Name of array variable */
1300 Tcl_Obj
**apColName
; /* Array of column names */
1304 ** Release any cache of column names currently held as part of
1305 ** the DbEvalContext structure passed as the first argument.
1307 static void dbReleaseColumnNames(DbEvalContext
*p
){
1310 for(i
=0; i
<p
->nCol
; i
++){
1311 Tcl_DecrRefCount(p
->apColName
[i
]);
1313 Tcl_Free((char *)p
->apColName
);
1320 ** Initialize a DbEvalContext structure.
1322 ** If pArray is not NULL, then it contains the name of a Tcl array
1323 ** variable. The "*" member of this array is set to a list containing
1324 ** the names of the columns returned by the statement as part of each
1325 ** call to dbEvalStep(), in order from left to right. e.g. if the names
1326 ** of the returned columns are a, b and c, it does the equivalent of the
1329 ** set ${pArray}(*) {a b c}
1331 static void dbEvalInit(
1332 DbEvalContext
*p
, /* Pointer to structure to initialize */
1333 SqliteDb
*pDb
, /* Database handle */
1334 Tcl_Obj
*pSql
, /* Object containing SQL script */
1335 Tcl_Obj
*pArray
/* Name of Tcl array to set (*) element of */
1337 memset(p
, 0, sizeof(DbEvalContext
));
1339 p
->zSql
= Tcl_GetString(pSql
);
1341 Tcl_IncrRefCount(pSql
);
1344 Tcl_IncrRefCount(pArray
);
1349 ** Obtain information about the row that the DbEvalContext passed as the
1350 ** first argument currently points to.
1352 static void dbEvalRowInfo(
1353 DbEvalContext
*p
, /* Evaluation context */
1354 int *pnCol
, /* OUT: Number of column names */
1355 Tcl_Obj
***papColName
/* OUT: Array of column names */
1357 /* Compute column names */
1358 if( 0==p
->apColName
){
1359 sqlite3_stmt
*pStmt
= p
->pPreStmt
->pStmt
;
1360 int i
; /* Iterator variable */
1361 int nCol
; /* Number of columns returned by pStmt */
1362 Tcl_Obj
**apColName
= 0; /* Array of column names */
1364 p
->nCol
= nCol
= sqlite3_column_count(pStmt
);
1365 if( nCol
>0 && (papColName
|| p
->pArray
) ){
1366 apColName
= (Tcl_Obj
**)Tcl_Alloc( sizeof(Tcl_Obj
*)*nCol
);
1367 for(i
=0; i
<nCol
; i
++){
1368 apColName
[i
] = dbTextToObj(sqlite3_column_name(pStmt
,i
));
1369 Tcl_IncrRefCount(apColName
[i
]);
1371 p
->apColName
= apColName
;
1374 /* If results are being stored in an array variable, then create
1375 ** the array(*) entry for that array
1378 Tcl_Interp
*interp
= p
->pDb
->interp
;
1379 Tcl_Obj
*pColList
= Tcl_NewObj();
1380 Tcl_Obj
*pStar
= Tcl_NewStringObj("*", -1);
1382 for(i
=0; i
<nCol
; i
++){
1383 Tcl_ListObjAppendElement(interp
, pColList
, apColName
[i
]);
1385 Tcl_IncrRefCount(pStar
);
1386 Tcl_ObjSetVar2(interp
, p
->pArray
, pStar
, pColList
, 0);
1387 Tcl_DecrRefCount(pStar
);
1392 *papColName
= p
->apColName
;
1400 ** Return one of TCL_OK, TCL_BREAK or TCL_ERROR. If TCL_ERROR is
1401 ** returned, then an error message is stored in the interpreter before
1404 ** A return value of TCL_OK means there is a row of data available. The
1405 ** data may be accessed using dbEvalRowInfo() and dbEvalColumnValue(). This
1406 ** is analogous to a return of SQLITE_ROW from sqlite3_step(). If TCL_BREAK
1407 ** is returned, then the SQL script has finished executing and there are
1408 ** no further rows available. This is similar to SQLITE_DONE.
1410 static int dbEvalStep(DbEvalContext
*p
){
1411 const char *zPrevSql
= 0; /* Previous value of p->zSql */
1413 while( p
->zSql
[0] || p
->pPreStmt
){
1415 if( p
->pPreStmt
==0 ){
1416 zPrevSql
= (p
->zSql
==zPrevSql
? 0 : p
->zSql
);
1417 rc
= dbPrepareAndBind(p
->pDb
, p
->zSql
, &p
->zSql
, &p
->pPreStmt
);
1418 if( rc
!=TCL_OK
) return rc
;
1421 SqliteDb
*pDb
= p
->pDb
;
1422 SqlPreparedStmt
*pPreStmt
= p
->pPreStmt
;
1423 sqlite3_stmt
*pStmt
= pPreStmt
->pStmt
;
1425 rcs
= sqlite3_step(pStmt
);
1426 if( rcs
==SQLITE_ROW
){
1430 dbEvalRowInfo(p
, 0, 0);
1432 rcs
= sqlite3_reset(pStmt
);
1434 pDb
->nStep
= sqlite3_stmt_status(pStmt
,SQLITE_STMTSTATUS_FULLSCAN_STEP
,1);
1435 pDb
->nSort
= sqlite3_stmt_status(pStmt
,SQLITE_STMTSTATUS_SORT
,1);
1436 pDb
->nIndex
= sqlite3_stmt_status(pStmt
,SQLITE_STMTSTATUS_AUTOINDEX
,1);
1437 dbReleaseColumnNames(p
);
1440 if( rcs
!=SQLITE_OK
){
1441 /* If a run-time error occurs, report the error and stop reading
1443 dbReleaseStmt(pDb
, pPreStmt
, 1);
1445 if( p
->pDb
->bLegacyPrepare
&& rcs
==SQLITE_SCHEMA
&& zPrevSql
){
1446 /* If the runtime error was an SQLITE_SCHEMA, and the database
1447 ** handle is configured to use the legacy sqlite3_prepare()
1448 ** interface, retry prepare()/step() on the same SQL statement.
1449 ** This only happens once. If there is a second SQLITE_SCHEMA
1450 ** error, the error will be returned to the caller. */
1455 Tcl_SetObjResult(pDb
->interp
, dbTextToObj(sqlite3_errmsg(pDb
->db
)));
1458 dbReleaseStmt(pDb
, pPreStmt
, 0);
1468 ** Free all resources currently held by the DbEvalContext structure passed
1469 ** as the first argument. There should be exactly one call to this function
1470 ** for each call to dbEvalInit().
1472 static void dbEvalFinalize(DbEvalContext
*p
){
1474 sqlite3_reset(p
->pPreStmt
->pStmt
);
1475 dbReleaseStmt(p
->pDb
, p
->pPreStmt
, 0);
1479 Tcl_DecrRefCount(p
->pArray
);
1482 Tcl_DecrRefCount(p
->pSql
);
1483 dbReleaseColumnNames(p
);
1487 ** Return a pointer to a Tcl_Obj structure with ref-count 0 that contains
1488 ** the value for the iCol'th column of the row currently pointed to by
1489 ** the DbEvalContext structure passed as the first argument.
1491 static Tcl_Obj
*dbEvalColumnValue(DbEvalContext
*p
, int iCol
){
1492 sqlite3_stmt
*pStmt
= p
->pPreStmt
->pStmt
;
1493 switch( sqlite3_column_type(pStmt
, iCol
) ){
1495 int bytes
= sqlite3_column_bytes(pStmt
, iCol
);
1496 const char *zBlob
= sqlite3_column_blob(pStmt
, iCol
);
1497 if( !zBlob
) bytes
= 0;
1498 return Tcl_NewByteArrayObj((u8
*)zBlob
, bytes
);
1500 case SQLITE_INTEGER
: {
1501 sqlite_int64 v
= sqlite3_column_int64(pStmt
, iCol
);
1502 if( v
>=-2147483647 && v
<=2147483647 ){
1503 return Tcl_NewIntObj((int)v
);
1505 return Tcl_NewWideIntObj(v
);
1508 case SQLITE_FLOAT
: {
1509 return Tcl_NewDoubleObj(sqlite3_column_double(pStmt
, iCol
));
1512 return dbTextToObj(p
->pDb
->zNull
);
1516 return dbTextToObj((char *)sqlite3_column_text(pStmt
, iCol
));
1520 ** If using Tcl version 8.6 or greater, use the NR functions to avoid
1521 ** recursive evalution of scripts by the [db eval] and [db trans]
1522 ** commands. Even if the headers used while compiling the extension
1523 ** are 8.6 or newer, the code still tests the Tcl version at runtime.
1524 ** This allows stubs-enabled builds to be used with older Tcl libraries.
1526 #if TCL_MAJOR_VERSION>8 || (TCL_MAJOR_VERSION==8 && TCL_MINOR_VERSION>=6)
1527 # define SQLITE_TCL_NRE 1
1528 static int DbUseNre(void){
1530 Tcl_GetVersion(&major
, &minor
, 0, 0);
1531 return( (major
==8 && minor
>=6) || major
>8 );
1535 ** Compiling using headers earlier than 8.6. In this case NR cannot be
1536 ** used, so DbUseNre() to always return zero. Add #defines for the other
1537 ** Tcl_NRxxx() functions to prevent them from causing compilation errors,
1538 ** even though the only invocations of them are within conditional blocks
1541 ** if( DbUseNre() ) { ... }
1543 # define SQLITE_TCL_NRE 0
1544 # define DbUseNre() 0
1545 # define Tcl_NRAddCallback(a,b,c,d,e,f) 0
1546 # define Tcl_NREvalObj(a,b,c) 0
1547 # define Tcl_NRCreateCommand(a,b,c,d,e,f) 0
1551 ** This function is part of the implementation of the command:
1553 ** $db eval SQL ?ARRAYNAME? SCRIPT
1555 static int DbEvalNextCmd(
1556 ClientData data
[], /* data[0] is the (DbEvalContext*) */
1557 Tcl_Interp
*interp
, /* Tcl interpreter */
1558 int result
/* Result so far */
1560 int rc
= result
; /* Return code */
1562 /* The first element of the data[] array is a pointer to a DbEvalContext
1563 ** structure allocated using Tcl_Alloc(). The second element of data[]
1564 ** is a pointer to a Tcl_Obj containing the script to run for each row
1565 ** returned by the queries encapsulated in data[0]. */
1566 DbEvalContext
*p
= (DbEvalContext
*)data
[0];
1567 Tcl_Obj
*pScript
= (Tcl_Obj
*)data
[1];
1568 Tcl_Obj
*pArray
= p
->pArray
;
1570 while( (rc
==TCL_OK
|| rc
==TCL_CONTINUE
) && TCL_OK
==(rc
= dbEvalStep(p
)) ){
1573 Tcl_Obj
**apColName
;
1574 dbEvalRowInfo(p
, &nCol
, &apColName
);
1575 for(i
=0; i
<nCol
; i
++){
1576 Tcl_Obj
*pVal
= dbEvalColumnValue(p
, i
);
1578 Tcl_ObjSetVar2(interp
, apColName
[i
], 0, pVal
, 0);
1580 Tcl_ObjSetVar2(interp
, pArray
, apColName
[i
], pVal
, 0);
1584 /* The required interpreter variables are now populated with the data
1585 ** from the current row. If using NRE, schedule callbacks to evaluate
1586 ** script pScript, then to invoke this function again to fetch the next
1587 ** row (or clean up if there is no next row or the script throws an
1588 ** exception). After scheduling the callbacks, return control to the
1591 ** If not using NRE, evaluate pScript directly and continue with the
1592 ** next iteration of this while(...) loop. */
1594 Tcl_NRAddCallback(interp
, DbEvalNextCmd
, (void*)p
, (void*)pScript
, 0, 0);
1595 return Tcl_NREvalObj(interp
, pScript
, 0);
1597 rc
= Tcl_EvalObjEx(interp
, pScript
, 0);
1601 Tcl_DecrRefCount(pScript
);
1603 Tcl_Free((char *)p
);
1605 if( rc
==TCL_OK
|| rc
==TCL_BREAK
){
1606 Tcl_ResetResult(interp
);
1613 ** The "sqlite" command below creates a new Tcl command for each
1614 ** connection it opens to an SQLite database. This routine is invoked
1615 ** whenever one of those connection-specific commands is executed
1616 ** in Tcl. For example, if you run Tcl code like this:
1618 ** sqlite3 db1 "my_database"
1621 ** The first command opens a connection to the "my_database" database
1622 ** and calls that connection "db1". The second command causes this
1623 ** subroutine to be invoked.
1625 static int DbObjCmd(void *cd
, Tcl_Interp
*interp
, int objc
,Tcl_Obj
*const*objv
){
1626 SqliteDb
*pDb
= (SqliteDb
*)cd
;
1629 static const char *DB_strs
[] = {
1630 "authorizer", "backup", "busy",
1631 "cache", "changes", "close",
1632 "collate", "collation_needed", "commit_hook",
1633 "complete", "copy", "enable_load_extension",
1634 "errorcode", "eval", "exists",
1635 "function", "incrblob", "interrupt",
1636 "last_insert_rowid", "nullvalue", "onecolumn",
1637 "profile", "progress", "rekey",
1638 "restore", "rollback_hook", "status",
1639 "timeout", "total_changes", "trace",
1640 "transaction", "unlock_notify", "update_hook",
1641 "version", "wal_hook", 0
1644 DB_AUTHORIZER
, DB_BACKUP
, DB_BUSY
,
1645 DB_CACHE
, DB_CHANGES
, DB_CLOSE
,
1646 DB_COLLATE
, DB_COLLATION_NEEDED
, DB_COMMIT_HOOK
,
1647 DB_COMPLETE
, DB_COPY
, DB_ENABLE_LOAD_EXTENSION
,
1648 DB_ERRORCODE
, DB_EVAL
, DB_EXISTS
,
1649 DB_FUNCTION
, DB_INCRBLOB
, DB_INTERRUPT
,
1650 DB_LAST_INSERT_ROWID
, DB_NULLVALUE
, DB_ONECOLUMN
,
1651 DB_PROFILE
, DB_PROGRESS
, DB_REKEY
,
1652 DB_RESTORE
, DB_ROLLBACK_HOOK
, DB_STATUS
,
1653 DB_TIMEOUT
, DB_TOTAL_CHANGES
, DB_TRACE
,
1654 DB_TRANSACTION
, DB_UNLOCK_NOTIFY
, DB_UPDATE_HOOK
,
1655 DB_VERSION
, DB_WAL_HOOK
1657 /* don't leave trailing commas on DB_enum, it confuses the AIX xlc compiler */
1660 Tcl_WrongNumArgs(interp
, 1, objv
, "SUBCOMMAND ...");
1663 if( Tcl_GetIndexFromObj(interp
, objv
[1], DB_strs
, "option", 0, &choice
) ){
1667 switch( (enum DB_enum
)choice
){
1669 /* $db authorizer ?CALLBACK?
1671 ** Invoke the given callback to authorize each SQL operation as it is
1672 ** compiled. 5 arguments are appended to the callback before it is
1675 ** (1) The authorization type (ex: SQLITE_CREATE_TABLE, SQLITE_INSERT, ...)
1676 ** (2) First descriptive name (depends on authorization type)
1677 ** (3) Second descriptive name
1678 ** (4) Name of the database (ex: "main", "temp")
1679 ** (5) Name of trigger that is doing the access
1681 ** The callback should return on of the following strings: SQLITE_OK,
1682 ** SQLITE_IGNORE, or SQLITE_DENY. Any other return value is an error.
1684 ** If this method is invoked with no arguments, the current authorization
1685 ** callback string is returned.
1687 case DB_AUTHORIZER
: {
1688 #ifdef SQLITE_OMIT_AUTHORIZATION
1689 Tcl_AppendResult(interp
, "authorization not available in this build", 0);
1693 Tcl_WrongNumArgs(interp
, 2, objv
, "?CALLBACK?");
1695 }else if( objc
==2 ){
1697 Tcl_AppendResult(interp
, pDb
->zAuth
, 0);
1703 Tcl_Free(pDb
->zAuth
);
1705 zAuth
= Tcl_GetStringFromObj(objv
[2], &len
);
1706 if( zAuth
&& len
>0 ){
1707 pDb
->zAuth
= Tcl_Alloc( len
+ 1 );
1708 memcpy(pDb
->zAuth
, zAuth
, len
+1);
1713 pDb
->interp
= interp
;
1714 sqlite3_set_authorizer(pDb
->db
, auth_callback
, pDb
);
1716 sqlite3_set_authorizer(pDb
->db
, 0, 0);
1723 /* $db backup ?DATABASE? FILENAME
1725 ** Open or create a database file named FILENAME. Transfer the
1726 ** content of local database DATABASE (default: "main") into the
1727 ** FILENAME database.
1730 const char *zDestFile
;
1733 sqlite3_backup
*pBackup
;
1737 zDestFile
= Tcl_GetString(objv
[2]);
1738 }else if( objc
==4 ){
1739 zSrcDb
= Tcl_GetString(objv
[2]);
1740 zDestFile
= Tcl_GetString(objv
[3]);
1742 Tcl_WrongNumArgs(interp
, 2, objv
, "?DATABASE? FILENAME");
1745 rc
= sqlite3_open(zDestFile
, &pDest
);
1746 if( rc
!=SQLITE_OK
){
1747 Tcl_AppendResult(interp
, "cannot open target database: ",
1748 sqlite3_errmsg(pDest
), (char*)0);
1749 sqlite3_close(pDest
);
1752 pBackup
= sqlite3_backup_init(pDest
, "main", pDb
->db
, zSrcDb
);
1754 Tcl_AppendResult(interp
, "backup failed: ",
1755 sqlite3_errmsg(pDest
), (char*)0);
1756 sqlite3_close(pDest
);
1759 while( (rc
= sqlite3_backup_step(pBackup
,100))==SQLITE_OK
){}
1760 sqlite3_backup_finish(pBackup
);
1761 if( rc
==SQLITE_DONE
){
1764 Tcl_AppendResult(interp
, "backup failed: ",
1765 sqlite3_errmsg(pDest
), (char*)0);
1768 sqlite3_close(pDest
);
1772 /* $db busy ?CALLBACK?
1774 ** Invoke the given callback if an SQL statement attempts to open
1775 ** a locked database file.
1779 Tcl_WrongNumArgs(interp
, 2, objv
, "CALLBACK");
1781 }else if( objc
==2 ){
1783 Tcl_AppendResult(interp
, pDb
->zBusy
, 0);
1789 Tcl_Free(pDb
->zBusy
);
1791 zBusy
= Tcl_GetStringFromObj(objv
[2], &len
);
1792 if( zBusy
&& len
>0 ){
1793 pDb
->zBusy
= Tcl_Alloc( len
+ 1 );
1794 memcpy(pDb
->zBusy
, zBusy
, len
+1);
1799 pDb
->interp
= interp
;
1800 sqlite3_busy_handler(pDb
->db
, DbBusyHandler
, pDb
);
1802 sqlite3_busy_handler(pDb
->db
, 0, 0);
1811 ** Flush the prepared statement cache, or set the maximum number of
1812 ** cached statements.
1819 Tcl_WrongNumArgs(interp
, 1, objv
, "cache option ?arg?");
1822 subCmd
= Tcl_GetStringFromObj( objv
[2], 0 );
1823 if( *subCmd
=='f' && strcmp(subCmd
,"flush")==0 ){
1825 Tcl_WrongNumArgs(interp
, 2, objv
, "flush");
1828 flushStmtCache( pDb
);
1830 }else if( *subCmd
=='s' && strcmp(subCmd
,"size")==0 ){
1832 Tcl_WrongNumArgs(interp
, 2, objv
, "size n");
1835 if( TCL_ERROR
==Tcl_GetIntFromObj(interp
, objv
[3], &n
) ){
1836 Tcl_AppendResult( interp
, "cannot convert \"",
1837 Tcl_GetStringFromObj(objv
[3],0), "\" to integer", 0);
1841 flushStmtCache( pDb
);
1843 }else if( n
>MAX_PREPARED_STMTS
){
1844 n
= MAX_PREPARED_STMTS
;
1850 Tcl_AppendResult( interp
, "bad option \"",
1851 Tcl_GetStringFromObj(objv
[2],0), "\": must be flush or size", 0);
1859 ** Return the number of rows that were modified, inserted, or deleted by
1860 ** the most recent INSERT, UPDATE or DELETE statement, not including
1861 ** any changes made by trigger programs.
1866 Tcl_WrongNumArgs(interp
, 2, objv
, "");
1869 pResult
= Tcl_GetObjResult(interp
);
1870 Tcl_SetIntObj(pResult
, sqlite3_changes(pDb
->db
));
1876 ** Shutdown the database
1879 Tcl_DeleteCommand(interp
, Tcl_GetStringFromObj(objv
[0], 0));
1884 ** $db collate NAME SCRIPT
1886 ** Create a new SQL collation function called NAME. Whenever
1887 ** that function is called, invoke SCRIPT to evaluate the function.
1890 SqlCollate
*pCollate
;
1895 Tcl_WrongNumArgs(interp
, 2, objv
, "NAME SCRIPT");
1898 zName
= Tcl_GetStringFromObj(objv
[2], 0);
1899 zScript
= Tcl_GetStringFromObj(objv
[3], &nScript
);
1900 pCollate
= (SqlCollate
*)Tcl_Alloc( sizeof(*pCollate
) + nScript
+ 1 );
1901 if( pCollate
==0 ) return TCL_ERROR
;
1902 pCollate
->interp
= interp
;
1903 pCollate
->pNext
= pDb
->pCollate
;
1904 pCollate
->zScript
= (char*)&pCollate
[1];
1905 pDb
->pCollate
= pCollate
;
1906 memcpy(pCollate
->zScript
, zScript
, nScript
+1);
1907 if( sqlite3_create_collation(pDb
->db
, zName
, SQLITE_UTF8
,
1908 pCollate
, tclSqlCollate
) ){
1909 Tcl_SetResult(interp
, (char *)sqlite3_errmsg(pDb
->db
), TCL_VOLATILE
);
1916 ** $db collation_needed SCRIPT
1918 ** Create a new SQL collation function called NAME. Whenever
1919 ** that function is called, invoke SCRIPT to evaluate the function.
1921 case DB_COLLATION_NEEDED
: {
1923 Tcl_WrongNumArgs(interp
, 2, objv
, "SCRIPT");
1926 if( pDb
->pCollateNeeded
){
1927 Tcl_DecrRefCount(pDb
->pCollateNeeded
);
1929 pDb
->pCollateNeeded
= Tcl_DuplicateObj(objv
[2]);
1930 Tcl_IncrRefCount(pDb
->pCollateNeeded
);
1931 sqlite3_collation_needed(pDb
->db
, pDb
, tclCollateNeeded
);
1935 /* $db commit_hook ?CALLBACK?
1937 ** Invoke the given callback just before committing every SQL transaction.
1938 ** If the callback throws an exception or returns non-zero, then the
1939 ** transaction is aborted. If CALLBACK is an empty string, the callback
1942 case DB_COMMIT_HOOK
: {
1944 Tcl_WrongNumArgs(interp
, 2, objv
, "?CALLBACK?");
1946 }else if( objc
==2 ){
1948 Tcl_AppendResult(interp
, pDb
->zCommit
, 0);
1954 Tcl_Free(pDb
->zCommit
);
1956 zCommit
= Tcl_GetStringFromObj(objv
[2], &len
);
1957 if( zCommit
&& len
>0 ){
1958 pDb
->zCommit
= Tcl_Alloc( len
+ 1 );
1959 memcpy(pDb
->zCommit
, zCommit
, len
+1);
1964 pDb
->interp
= interp
;
1965 sqlite3_commit_hook(pDb
->db
, DbCommitHandler
, pDb
);
1967 sqlite3_commit_hook(pDb
->db
, 0, 0);
1975 ** Return TRUE if SQL is a complete SQL statement. Return FALSE if
1976 ** additional lines of input are needed. This is similar to the
1977 ** built-in "info complete" command of Tcl.
1980 #ifndef SQLITE_OMIT_COMPLETE
1984 Tcl_WrongNumArgs(interp
, 2, objv
, "SQL");
1987 isComplete
= sqlite3_complete( Tcl_GetStringFromObj(objv
[2], 0) );
1988 pResult
= Tcl_GetObjResult(interp
);
1989 Tcl_SetBooleanObj(pResult
, isComplete
);
1994 /* $db copy conflict-algorithm table filename ?SEPARATOR? ?NULLINDICATOR?
1996 ** Copy data into table from filename, optionally using SEPARATOR
1997 ** as column separators. If a column contains a null string, or the
1998 ** value of NULLINDICATOR, a NULL is inserted for the column.
1999 ** conflict-algorithm is one of the sqlite conflict algorithms:
2000 ** rollback, abort, fail, ignore, replace
2001 ** On success, return the number of lines processed, not necessarily same
2002 ** as 'db changes' due to conflict-algorithm selected.
2004 ** This code is basically an implementation/enhancement of
2005 ** the sqlite3 shell.c ".import" command.
2007 ** This command usage is equivalent to the sqlite2.x COPY statement,
2008 ** which imports file data into a table using the PostgreSQL COPY file format:
2009 ** $db copy $conflit_algo $table_name $filename \t \\N
2012 char *zTable
; /* Insert data into this table */
2013 char *zFile
; /* The file from which to extract data */
2014 char *zConflict
; /* The conflict algorithm to use */
2015 sqlite3_stmt
*pStmt
; /* A statement */
2016 int nCol
; /* Number of columns in the table */
2017 int nByte
; /* Number of bytes in an SQL string */
2018 int i
, j
; /* Loop counters */
2019 int nSep
; /* Number of bytes in zSep[] */
2020 int nNull
; /* Number of bytes in zNull[] */
2021 char *zSql
; /* An SQL statement */
2022 char *zLine
; /* A single line of input from the file */
2023 char **azCol
; /* zLine[] broken up into columns */
2024 char *zCommit
; /* How to commit changes */
2025 FILE *in
; /* The input file */
2026 int lineno
= 0; /* Line number of input file */
2027 char zLineNum
[80]; /* Line number print buffer */
2028 Tcl_Obj
*pResult
; /* interp result */
2032 if( objc
<5 || objc
>7 ){
2033 Tcl_WrongNumArgs(interp
, 2, objv
,
2034 "CONFLICT-ALGORITHM TABLE FILENAME ?SEPARATOR? ?NULLINDICATOR?");
2038 zSep
= Tcl_GetStringFromObj(objv
[5], 0);
2043 zNull
= Tcl_GetStringFromObj(objv
[6], 0);
2047 zConflict
= Tcl_GetStringFromObj(objv
[2], 0);
2048 zTable
= Tcl_GetStringFromObj(objv
[3], 0);
2049 zFile
= Tcl_GetStringFromObj(objv
[4], 0);
2050 nSep
= strlen30(zSep
);
2051 nNull
= strlen30(zNull
);
2053 Tcl_AppendResult(interp
,"Error: non-null separator required for copy",0);
2056 if(strcmp(zConflict
, "rollback") != 0 &&
2057 strcmp(zConflict
, "abort" ) != 0 &&
2058 strcmp(zConflict
, "fail" ) != 0 &&
2059 strcmp(zConflict
, "ignore" ) != 0 &&
2060 strcmp(zConflict
, "replace" ) != 0 ) {
2061 Tcl_AppendResult(interp
, "Error: \"", zConflict
,
2062 "\", conflict-algorithm must be one of: rollback, "
2063 "abort, fail, ignore, or replace", 0);
2066 zSql
= sqlite3_mprintf("SELECT * FROM '%q'", zTable
);
2068 Tcl_AppendResult(interp
, "Error: no such table: ", zTable
, 0);
2071 nByte
= strlen30(zSql
);
2072 rc
= sqlite3_prepare(pDb
->db
, zSql
, -1, &pStmt
, 0);
2075 Tcl_AppendResult(interp
, "Error: ", sqlite3_errmsg(pDb
->db
), 0);
2078 nCol
= sqlite3_column_count(pStmt
);
2080 sqlite3_finalize(pStmt
);
2084 zSql
= malloc( nByte
+ 50 + nCol
*2 );
2086 Tcl_AppendResult(interp
, "Error: can't malloc()", 0);
2089 sqlite3_snprintf(nByte
+50, zSql
, "INSERT OR %q INTO '%q' VALUES(?",
2092 for(i
=1; i
<nCol
; i
++){
2098 rc
= sqlite3_prepare(pDb
->db
, zSql
, -1, &pStmt
, 0);
2101 Tcl_AppendResult(interp
, "Error: ", sqlite3_errmsg(pDb
->db
), 0);
2102 sqlite3_finalize(pStmt
);
2105 in
= fopen(zFile
, "rb");
2107 Tcl_AppendResult(interp
, "Error: cannot open file: ", zFile
, NULL
);
2108 sqlite3_finalize(pStmt
);
2111 azCol
= malloc( sizeof(azCol
[0])*(nCol
+1) );
2113 Tcl_AppendResult(interp
, "Error: can't malloc()", 0);
2117 (void)sqlite3_exec(pDb
->db
, "BEGIN", 0, 0, 0);
2119 while( (zLine
= local_getline(0, in
))!=0 ){
2123 for(i
=0, z
=zLine
; *z
; z
++){
2124 if( *z
==zSep
[0] && strncmp(z
, zSep
, nSep
)==0 ){
2128 azCol
[i
] = &z
[nSep
];
2135 int nErr
= strlen30(zFile
) + 200;
2136 zErr
= malloc(nErr
);
2138 sqlite3_snprintf(nErr
, zErr
,
2139 "Error: %s line %d: expected %d columns of data but found %d",
2140 zFile
, lineno
, nCol
, i
+1);
2141 Tcl_AppendResult(interp
, zErr
, 0);
2144 zCommit
= "ROLLBACK";
2147 for(i
=0; i
<nCol
; i
++){
2148 /* check for null data, if so, bind as null */
2149 if( (nNull
>0 && strcmp(azCol
[i
], zNull
)==0)
2150 || strlen30(azCol
[i
])==0
2152 sqlite3_bind_null(pStmt
, i
+1);
2154 sqlite3_bind_text(pStmt
, i
+1, azCol
[i
], -1, SQLITE_STATIC
);
2157 sqlite3_step(pStmt
);
2158 rc
= sqlite3_reset(pStmt
);
2160 if( rc
!=SQLITE_OK
){
2161 Tcl_AppendResult(interp
,"Error: ", sqlite3_errmsg(pDb
->db
), 0);
2162 zCommit
= "ROLLBACK";
2168 sqlite3_finalize(pStmt
);
2169 (void)sqlite3_exec(pDb
->db
, zCommit
, 0, 0, 0);
2171 if( zCommit
[0] == 'C' ){
2172 /* success, set result as number of lines processed */
2173 pResult
= Tcl_GetObjResult(interp
);
2174 Tcl_SetIntObj(pResult
, lineno
);
2177 /* failure, append lineno where failed */
2178 sqlite3_snprintf(sizeof(zLineNum
), zLineNum
,"%d",lineno
);
2179 Tcl_AppendResult(interp
,", failed while processing line: ",zLineNum
,0);
2186 ** $db enable_load_extension BOOLEAN
2188 ** Turn the extension loading feature on or off. It if off by
2191 case DB_ENABLE_LOAD_EXTENSION
: {
2192 #ifndef SQLITE_OMIT_LOAD_EXTENSION
2195 Tcl_WrongNumArgs(interp
, 2, objv
, "BOOLEAN");
2198 if( Tcl_GetBooleanFromObj(interp
, objv
[2], &onoff
) ){
2201 sqlite3_enable_load_extension(pDb
->db
, onoff
);
2204 Tcl_AppendResult(interp
, "extension loading is turned off at compile-time",
2213 ** Return the numeric error code that was returned by the most recent
2214 ** call to sqlite3_exec().
2216 case DB_ERRORCODE
: {
2217 Tcl_SetObjResult(interp
, Tcl_NewIntObj(sqlite3_errcode(pDb
->db
)));
2223 ** $db onecolumn $sql
2225 ** The onecolumn method is the equivalent of:
2226 ** lindex [$db eval $sql] 0
2229 case DB_ONECOLUMN
: {
2230 DbEvalContext sEval
;
2232 Tcl_WrongNumArgs(interp
, 2, objv
, "SQL");
2236 dbEvalInit(&sEval
, pDb
, objv
[2], 0);
2237 rc
= dbEvalStep(&sEval
);
2238 if( choice
==DB_ONECOLUMN
){
2240 Tcl_SetObjResult(interp
, dbEvalColumnValue(&sEval
, 0));
2241 }else if( rc
==TCL_BREAK
){
2242 Tcl_ResetResult(interp
);
2244 }else if( rc
==TCL_BREAK
|| rc
==TCL_OK
){
2245 Tcl_SetObjResult(interp
, Tcl_NewBooleanObj(rc
==TCL_OK
));
2247 dbEvalFinalize(&sEval
);
2249 if( rc
==TCL_BREAK
){
2256 ** $db eval $sql ?array? ?{ ...code... }?
2258 ** The SQL statement in $sql is evaluated. For each row, the values are
2259 ** placed in elements of the array named "array" and ...code... is executed.
2260 ** If "array" and "code" are omitted, then no callback is every invoked.
2261 ** If "array" is an empty string, then the values are placed in variables
2262 ** that have the same name as the fields extracted by the query.
2265 if( objc
<3 || objc
>5 ){
2266 Tcl_WrongNumArgs(interp
, 2, objv
, "SQL ?ARRAY-NAME? ?SCRIPT?");
2271 DbEvalContext sEval
;
2272 Tcl_Obj
*pRet
= Tcl_NewObj();
2273 Tcl_IncrRefCount(pRet
);
2274 dbEvalInit(&sEval
, pDb
, objv
[2], 0);
2275 while( TCL_OK
==(rc
= dbEvalStep(&sEval
)) ){
2278 dbEvalRowInfo(&sEval
, &nCol
, 0);
2279 for(i
=0; i
<nCol
; i
++){
2280 Tcl_ListObjAppendElement(interp
, pRet
, dbEvalColumnValue(&sEval
, i
));
2283 dbEvalFinalize(&sEval
);
2284 if( rc
==TCL_BREAK
){
2285 Tcl_SetObjResult(interp
, pRet
);
2288 Tcl_DecrRefCount(pRet
);
2292 Tcl_Obj
*pArray
= 0;
2295 if( objc
==5 && *(char *)Tcl_GetString(objv
[3]) ){
2298 pScript
= objv
[objc
-1];
2299 Tcl_IncrRefCount(pScript
);
2301 p
= (DbEvalContext
*)Tcl_Alloc(sizeof(DbEvalContext
));
2302 dbEvalInit(p
, pDb
, objv
[2], pArray
);
2305 cd
[1] = (void *)pScript
;
2306 rc
= DbEvalNextCmd(cd
, interp
, TCL_OK
);
2312 ** $db function NAME [-argcount N] SCRIPT
2314 ** Create a new SQL function called NAME. Whenever that function is
2315 ** called, invoke SCRIPT to evaluate the function.
2323 const char *z
= Tcl_GetString(objv
[3]);
2324 int n
= strlen30(z
);
2325 if( n
>2 && strncmp(z
, "-argcount",n
)==0 ){
2326 if( Tcl_GetIntFromObj(interp
, objv
[4], &nArg
) ) return TCL_ERROR
;
2328 Tcl_AppendResult(interp
, "number of arguments must be non-negative",
2334 }else if( objc
!=4 ){
2335 Tcl_WrongNumArgs(interp
, 2, objv
, "NAME [-argcount N] SCRIPT");
2340 zName
= Tcl_GetStringFromObj(objv
[2], 0);
2341 pFunc
= findSqlFunc(pDb
, zName
);
2342 if( pFunc
==0 ) return TCL_ERROR
;
2343 if( pFunc
->pScript
){
2344 Tcl_DecrRefCount(pFunc
->pScript
);
2346 pFunc
->pScript
= pScript
;
2347 Tcl_IncrRefCount(pScript
);
2348 pFunc
->useEvalObjv
= safeToUseEvalObjv(interp
, pScript
);
2349 rc
= sqlite3_create_function(pDb
->db
, zName
, nArg
, SQLITE_UTF8
,
2350 pFunc
, tclSqlFunc
, 0, 0);
2351 if( rc
!=SQLITE_OK
){
2353 Tcl_SetResult(interp
, (char *)sqlite3_errmsg(pDb
->db
), TCL_VOLATILE
);
2359 ** $db incrblob ?-readonly? ?DB? TABLE COLUMN ROWID
2362 #ifdef SQLITE_OMIT_INCRBLOB
2363 Tcl_AppendResult(interp
, "incrblob not available in this build", 0);
2367 const char *zDb
= "main";
2369 const char *zColumn
;
2372 /* Check for the -readonly option */
2373 if( objc
>3 && strcmp(Tcl_GetString(objv
[2]), "-readonly")==0 ){
2377 if( objc
!=(5+isReadonly
) && objc
!=(6+isReadonly
) ){
2378 Tcl_WrongNumArgs(interp
, 2, objv
, "?-readonly? ?DB? TABLE COLUMN ROWID");
2382 if( objc
==(6+isReadonly
) ){
2383 zDb
= Tcl_GetString(objv
[2]);
2385 zTable
= Tcl_GetString(objv
[objc
-3]);
2386 zColumn
= Tcl_GetString(objv
[objc
-2]);
2387 rc
= Tcl_GetWideIntFromObj(interp
, objv
[objc
-1], &iRow
);
2390 rc
= createIncrblobChannel(
2391 interp
, pDb
, zDb
, zTable
, zColumn
, iRow
, isReadonly
2401 ** Interrupt the execution of the inner-most SQL interpreter. This
2402 ** causes the SQL statement to return an error of SQLITE_INTERRUPT.
2404 case DB_INTERRUPT
: {
2405 sqlite3_interrupt(pDb
->db
);
2410 ** $db nullvalue ?STRING?
2412 ** Change text used when a NULL comes back from the database. If ?STRING?
2413 ** is not present, then the current string used for NULL is returned.
2414 ** If STRING is present, then STRING is returned.
2417 case DB_NULLVALUE
: {
2418 if( objc
!=2 && objc
!=3 ){
2419 Tcl_WrongNumArgs(interp
, 2, objv
, "NULLVALUE");
2424 char *zNull
= Tcl_GetStringFromObj(objv
[2], &len
);
2426 Tcl_Free(pDb
->zNull
);
2428 if( zNull
&& len
>0 ){
2429 pDb
->zNull
= Tcl_Alloc( len
+ 1 );
2430 memcpy(pDb
->zNull
, zNull
, len
);
2431 pDb
->zNull
[len
] = '\0';
2436 Tcl_SetObjResult(interp
, dbTextToObj(pDb
->zNull
));
2441 ** $db last_insert_rowid
2443 ** Return an integer which is the ROWID for the most recent insert.
2445 case DB_LAST_INSERT_ROWID
: {
2449 Tcl_WrongNumArgs(interp
, 2, objv
, "");
2452 rowid
= sqlite3_last_insert_rowid(pDb
->db
);
2453 pResult
= Tcl_GetObjResult(interp
);
2454 Tcl_SetWideIntObj(pResult
, rowid
);
2459 ** The DB_ONECOLUMN method is implemented together with DB_EXISTS.
2462 /* $db progress ?N CALLBACK?
2464 ** Invoke the given callback every N virtual machine opcodes while executing
2469 if( pDb
->zProgress
){
2470 Tcl_AppendResult(interp
, pDb
->zProgress
, 0);
2472 }else if( objc
==4 ){
2476 if( TCL_OK
!=Tcl_GetIntFromObj(interp
, objv
[2], &N
) ){
2479 if( pDb
->zProgress
){
2480 Tcl_Free(pDb
->zProgress
);
2482 zProgress
= Tcl_GetStringFromObj(objv
[3], &len
);
2483 if( zProgress
&& len
>0 ){
2484 pDb
->zProgress
= Tcl_Alloc( len
+ 1 );
2485 memcpy(pDb
->zProgress
, zProgress
, len
+1);
2489 #ifndef SQLITE_OMIT_PROGRESS_CALLBACK
2490 if( pDb
->zProgress
){
2491 pDb
->interp
= interp
;
2492 sqlite3_progress_handler(pDb
->db
, N
, DbProgressHandler
, pDb
);
2494 sqlite3_progress_handler(pDb
->db
, 0, 0, 0);
2498 Tcl_WrongNumArgs(interp
, 2, objv
, "N CALLBACK");
2504 /* $db profile ?CALLBACK?
2506 ** Make arrangements to invoke the CALLBACK routine after each SQL statement
2507 ** that has run. The text of the SQL and the amount of elapse time are
2508 ** appended to CALLBACK before the script is run.
2512 Tcl_WrongNumArgs(interp
, 2, objv
, "?CALLBACK?");
2514 }else if( objc
==2 ){
2515 if( pDb
->zProfile
){
2516 Tcl_AppendResult(interp
, pDb
->zProfile
, 0);
2521 if( pDb
->zProfile
){
2522 Tcl_Free(pDb
->zProfile
);
2524 zProfile
= Tcl_GetStringFromObj(objv
[2], &len
);
2525 if( zProfile
&& len
>0 ){
2526 pDb
->zProfile
= Tcl_Alloc( len
+ 1 );
2527 memcpy(pDb
->zProfile
, zProfile
, len
+1);
2531 #if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT)
2532 if( pDb
->zProfile
){
2533 pDb
->interp
= interp
;
2534 sqlite3_profile(pDb
->db
, DbProfileHandler
, pDb
);
2536 sqlite3_profile(pDb
->db
, 0, 0);
2546 ** Change the encryption key on the currently open database.
2549 #ifdef SQLITE_HAS_CODEC
2554 Tcl_WrongNumArgs(interp
, 2, objv
, "KEY");
2557 #ifdef SQLITE_HAS_CODEC
2558 pKey
= Tcl_GetByteArrayFromObj(objv
[2], &nKey
);
2559 rc
= sqlite3_rekey(pDb
->db
, pKey
, nKey
);
2561 Tcl_AppendResult(interp
, sqlite3ErrStr(rc
), 0);
2568 /* $db restore ?DATABASE? FILENAME
2570 ** Open a database file named FILENAME. Transfer the content
2571 ** of FILENAME into the local database DATABASE (default: "main").
2574 const char *zSrcFile
;
2575 const char *zDestDb
;
2577 sqlite3_backup
*pBackup
;
2582 zSrcFile
= Tcl_GetString(objv
[2]);
2583 }else if( objc
==4 ){
2584 zDestDb
= Tcl_GetString(objv
[2]);
2585 zSrcFile
= Tcl_GetString(objv
[3]);
2587 Tcl_WrongNumArgs(interp
, 2, objv
, "?DATABASE? FILENAME");
2590 rc
= sqlite3_open_v2(zSrcFile
, &pSrc
, SQLITE_OPEN_READONLY
, 0);
2591 if( rc
!=SQLITE_OK
){
2592 Tcl_AppendResult(interp
, "cannot open source database: ",
2593 sqlite3_errmsg(pSrc
), (char*)0);
2594 sqlite3_close(pSrc
);
2597 pBackup
= sqlite3_backup_init(pDb
->db
, zDestDb
, pSrc
, "main");
2599 Tcl_AppendResult(interp
, "restore failed: ",
2600 sqlite3_errmsg(pDb
->db
), (char*)0);
2601 sqlite3_close(pSrc
);
2604 while( (rc
= sqlite3_backup_step(pBackup
,100))==SQLITE_OK
2605 || rc
==SQLITE_BUSY
){
2606 if( rc
==SQLITE_BUSY
){
2607 if( nTimeout
++ >= 3 ) break;
2611 sqlite3_backup_finish(pBackup
);
2612 if( rc
==SQLITE_DONE
){
2614 }else if( rc
==SQLITE_BUSY
|| rc
==SQLITE_LOCKED
){
2615 Tcl_AppendResult(interp
, "restore failed: source database busy",
2619 Tcl_AppendResult(interp
, "restore failed: ",
2620 sqlite3_errmsg(pDb
->db
), (char*)0);
2623 sqlite3_close(pSrc
);
2628 ** $db status (step|sort|autoindex)
2630 ** Display SQLITE_STMTSTATUS_FULLSCAN_STEP or
2631 ** SQLITE_STMTSTATUS_SORT for the most recent eval.
2637 Tcl_WrongNumArgs(interp
, 2, objv
, "(step|sort|autoindex)");
2640 zOp
= Tcl_GetString(objv
[2]);
2641 if( strcmp(zOp
, "step")==0 ){
2643 }else if( strcmp(zOp
, "sort")==0 ){
2645 }else if( strcmp(zOp
, "autoindex")==0 ){
2648 Tcl_AppendResult(interp
,
2649 "bad argument: should be autoindex, step, or sort",
2653 Tcl_SetObjResult(interp
, Tcl_NewIntObj(v
));
2658 ** $db timeout MILLESECONDS
2660 ** Delay for the number of milliseconds specified when a file is locked.
2665 Tcl_WrongNumArgs(interp
, 2, objv
, "MILLISECONDS");
2668 if( Tcl_GetIntFromObj(interp
, objv
[2], &ms
) ) return TCL_ERROR
;
2669 sqlite3_busy_timeout(pDb
->db
, ms
);
2674 ** $db total_changes
2676 ** Return the number of rows that were modified, inserted, or deleted
2677 ** since the database handle was created.
2679 case DB_TOTAL_CHANGES
: {
2682 Tcl_WrongNumArgs(interp
, 2, objv
, "");
2685 pResult
= Tcl_GetObjResult(interp
);
2686 Tcl_SetIntObj(pResult
, sqlite3_total_changes(pDb
->db
));
2690 /* $db trace ?CALLBACK?
2692 ** Make arrangements to invoke the CALLBACK routine for each SQL statement
2693 ** that is executed. The text of the SQL is appended to CALLBACK before
2698 Tcl_WrongNumArgs(interp
, 2, objv
, "?CALLBACK?");
2700 }else if( objc
==2 ){
2702 Tcl_AppendResult(interp
, pDb
->zTrace
, 0);
2708 Tcl_Free(pDb
->zTrace
);
2710 zTrace
= Tcl_GetStringFromObj(objv
[2], &len
);
2711 if( zTrace
&& len
>0 ){
2712 pDb
->zTrace
= Tcl_Alloc( len
+ 1 );
2713 memcpy(pDb
->zTrace
, zTrace
, len
+1);
2717 #if !defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_OMIT_FLOATING_POINT)
2719 pDb
->interp
= interp
;
2720 sqlite3_trace(pDb
->db
, DbTraceHandler
, pDb
);
2722 sqlite3_trace(pDb
->db
, 0, 0);
2729 /* $db transaction [-deferred|-immediate|-exclusive] SCRIPT
2731 ** Start a new transaction (if we are not already in the midst of a
2732 ** transaction) and execute the TCL script SCRIPT. After SCRIPT
2733 ** completes, either commit the transaction or roll it back if SCRIPT
2734 ** throws an exception. Or if no new transation was started, do nothing.
2735 ** pass the exception on up the stack.
2737 ** This command was inspired by Dave Thomas's talk on Ruby at the
2738 ** 2005 O'Reilly Open Source Convention (OSCON).
2740 case DB_TRANSACTION
: {
2742 const char *zBegin
= "SAVEPOINT _tcl_transaction";
2743 if( objc
!=3 && objc
!=4 ){
2744 Tcl_WrongNumArgs(interp
, 2, objv
, "[TYPE] SCRIPT");
2748 if( pDb
->nTransaction
==0 && objc
==4 ){
2749 static const char *TTYPE_strs
[] = {
2750 "deferred", "exclusive", "immediate", 0
2753 TTYPE_DEFERRED
, TTYPE_EXCLUSIVE
, TTYPE_IMMEDIATE
2756 if( Tcl_GetIndexFromObj(interp
, objv
[2], TTYPE_strs
, "transaction type",
2760 switch( (enum TTYPE_enum
)ttype
){
2761 case TTYPE_DEFERRED
: /* no-op */; break;
2762 case TTYPE_EXCLUSIVE
: zBegin
= "BEGIN EXCLUSIVE"; break;
2763 case TTYPE_IMMEDIATE
: zBegin
= "BEGIN IMMEDIATE"; break;
2766 pScript
= objv
[objc
-1];
2768 /* Run the SQLite BEGIN command to open a transaction or savepoint. */
2770 rc
= sqlite3_exec(pDb
->db
, zBegin
, 0, 0, 0);
2772 if( rc
!=SQLITE_OK
){
2773 Tcl_AppendResult(interp
, sqlite3_errmsg(pDb
->db
), 0);
2776 pDb
->nTransaction
++;
2778 /* If using NRE, schedule a callback to invoke the script pScript, then
2779 ** a second callback to commit (or rollback) the transaction or savepoint
2780 ** opened above. If not using NRE, evaluate the script directly, then
2781 ** call function DbTransPostCmd() to commit (or rollback) the transaction
2784 Tcl_NRAddCallback(interp
, DbTransPostCmd
, cd
, 0, 0, 0);
2785 Tcl_NREvalObj(interp
, pScript
, 0);
2787 rc
= DbTransPostCmd(&cd
, interp
, Tcl_EvalObjEx(interp
, pScript
, 0));
2793 ** $db unlock_notify ?script?
2795 case DB_UNLOCK_NOTIFY
: {
2796 #ifndef SQLITE_ENABLE_UNLOCK_NOTIFY
2797 Tcl_AppendResult(interp
, "unlock_notify not available in this build", 0);
2800 if( objc
!=2 && objc
!=3 ){
2801 Tcl_WrongNumArgs(interp
, 2, objv
, "?SCRIPT?");
2804 void (*xNotify
)(void **, int) = 0;
2805 void *pNotifyArg
= 0;
2807 if( pDb
->pUnlockNotify
){
2808 Tcl_DecrRefCount(pDb
->pUnlockNotify
);
2809 pDb
->pUnlockNotify
= 0;
2813 xNotify
= DbUnlockNotify
;
2814 pNotifyArg
= (void *)pDb
;
2815 pDb
->pUnlockNotify
= objv
[2];
2816 Tcl_IncrRefCount(pDb
->pUnlockNotify
);
2819 if( sqlite3_unlock_notify(pDb
->db
, xNotify
, pNotifyArg
) ){
2820 Tcl_AppendResult(interp
, sqlite3_errmsg(pDb
->db
), 0);
2829 ** $db wal_hook ?script?
2830 ** $db update_hook ?script?
2831 ** $db rollback_hook ?script?
2834 case DB_UPDATE_HOOK
:
2835 case DB_ROLLBACK_HOOK
: {
2837 /* set ppHook to point at pUpdateHook or pRollbackHook, depending on
2838 ** whether [$db update_hook] or [$db rollback_hook] was invoked.
2841 if( choice
==DB_UPDATE_HOOK
){
2842 ppHook
= &pDb
->pUpdateHook
;
2843 }else if( choice
==DB_WAL_HOOK
){
2844 ppHook
= &pDb
->pWalHook
;
2846 ppHook
= &pDb
->pRollbackHook
;
2849 if( objc
!=2 && objc
!=3 ){
2850 Tcl_WrongNumArgs(interp
, 2, objv
, "?SCRIPT?");
2854 Tcl_SetObjResult(interp
, *ppHook
);
2856 Tcl_DecrRefCount(*ppHook
);
2861 assert( !(*ppHook
) );
2862 if( Tcl_GetCharLength(objv
[2])>0 ){
2864 Tcl_IncrRefCount(*ppHook
);
2868 sqlite3_update_hook(pDb
->db
, (pDb
->pUpdateHook
?DbUpdateHandler
:0), pDb
);
2869 sqlite3_rollback_hook(pDb
->db
,(pDb
->pRollbackHook
?DbRollbackHandler
:0),pDb
);
2870 sqlite3_wal_hook(pDb
->db
,(pDb
->pWalHook
?DbWalHandler
:0),pDb
);
2877 ** Return the version string for this database.
2880 Tcl_SetResult(interp
, (char *)sqlite3_libversion(), TCL_STATIC
);
2885 } /* End of the SWITCH statement */
2891 ** Adaptor that provides an objCmd interface to the NRE-enabled
2892 ** interface implementation.
2894 static int DbObjCmdAdaptor(
2900 return Tcl_NRCallObjProc(interp
, DbObjCmd
, cd
, objc
, objv
);
2902 #endif /* SQLITE_TCL_NRE */
2905 ** sqlite3 DBNAME FILENAME ?-vfs VFSNAME? ?-key KEY? ?-readonly BOOLEAN?
2906 ** ?-create BOOLEAN? ?-nomutex BOOLEAN?
2908 ** This is the main Tcl command. When the "sqlite" Tcl command is
2909 ** invoked, this routine runs to process that command.
2911 ** The first argument, DBNAME, is an arbitrary name for a new
2912 ** database connection. This command creates a new command named
2913 ** DBNAME that is used to control that connection. The database
2914 ** connection is deleted when the DBNAME command is deleted.
2916 ** The second argument is the name of the database file.
2919 static int DbMain(void *cd
, Tcl_Interp
*interp
, int objc
,Tcl_Obj
*const*objv
){
2925 const char *zVfs
= 0;
2927 Tcl_DString translatedFilename
;
2928 #ifdef SQLITE_HAS_CODEC
2933 /* In normal use, each TCL interpreter runs in a single thread. So
2934 ** by default, we can turn of mutexing on SQLite database connections.
2935 ** However, for testing purposes it is useful to have mutexes turned
2936 ** on. So, by default, mutexes default off. But if compiled with
2937 ** SQLITE_TCL_DEFAULT_FULLMUTEX then mutexes default on.
2939 #ifdef SQLITE_TCL_DEFAULT_FULLMUTEX
2940 flags
= SQLITE_OPEN_READWRITE
| SQLITE_OPEN_CREATE
| SQLITE_OPEN_FULLMUTEX
;
2942 flags
= SQLITE_OPEN_READWRITE
| SQLITE_OPEN_CREATE
| SQLITE_OPEN_NOMUTEX
;
2946 zArg
= Tcl_GetStringFromObj(objv
[1], 0);
2947 if( strcmp(zArg
,"-version")==0 ){
2948 Tcl_AppendResult(interp
,sqlite3_version
,0);
2951 if( strcmp(zArg
,"-has-codec")==0 ){
2952 #ifdef SQLITE_HAS_CODEC
2953 Tcl_AppendResult(interp
,"1",0);
2955 Tcl_AppendResult(interp
,"0",0);
2960 for(i
=3; i
+1<objc
; i
+=2){
2961 zArg
= Tcl_GetString(objv
[i
]);
2962 if( strcmp(zArg
,"-key")==0 ){
2963 #ifdef SQLITE_HAS_CODEC
2964 pKey
= Tcl_GetByteArrayFromObj(objv
[i
+1], &nKey
);
2966 }else if( strcmp(zArg
, "-vfs")==0 ){
2967 zVfs
= Tcl_GetString(objv
[i
+1]);
2968 }else if( strcmp(zArg
, "-readonly")==0 ){
2970 if( Tcl_GetBooleanFromObj(interp
, objv
[i
+1], &b
) ) return TCL_ERROR
;
2972 flags
&= ~(SQLITE_OPEN_READWRITE
|SQLITE_OPEN_CREATE
);
2973 flags
|= SQLITE_OPEN_READONLY
;
2975 flags
&= ~SQLITE_OPEN_READONLY
;
2976 flags
|= SQLITE_OPEN_READWRITE
;
2978 }else if( strcmp(zArg
, "-create")==0 ){
2980 if( Tcl_GetBooleanFromObj(interp
, objv
[i
+1], &b
) ) return TCL_ERROR
;
2981 if( b
&& (flags
& SQLITE_OPEN_READONLY
)==0 ){
2982 flags
|= SQLITE_OPEN_CREATE
;
2984 flags
&= ~SQLITE_OPEN_CREATE
;
2986 }else if( strcmp(zArg
, "-nomutex")==0 ){
2988 if( Tcl_GetBooleanFromObj(interp
, objv
[i
+1], &b
) ) return TCL_ERROR
;
2990 flags
|= SQLITE_OPEN_NOMUTEX
;
2991 flags
&= ~SQLITE_OPEN_FULLMUTEX
;
2993 flags
&= ~SQLITE_OPEN_NOMUTEX
;
2995 }else if( strcmp(zArg
, "-fullmutex")==0 ){
2997 if( Tcl_GetBooleanFromObj(interp
, objv
[i
+1], &b
) ) return TCL_ERROR
;
2999 flags
|= SQLITE_OPEN_FULLMUTEX
;
3000 flags
&= ~SQLITE_OPEN_NOMUTEX
;
3002 flags
&= ~SQLITE_OPEN_FULLMUTEX
;
3004 }else if( strcmp(zArg
, "-uri")==0 ){
3006 if( Tcl_GetBooleanFromObj(interp
, objv
[i
+1], &b
) ) return TCL_ERROR
;
3008 flags
|= SQLITE_OPEN_URI
;
3010 flags
&= ~SQLITE_OPEN_URI
;
3013 Tcl_AppendResult(interp
, "unknown option: ", zArg
, (char*)0);
3017 if( objc
<3 || (objc
&1)!=1 ){
3018 Tcl_WrongNumArgs(interp
, 1, objv
,
3019 "HANDLE FILENAME ?-vfs VFSNAME? ?-readonly BOOLEAN? ?-create BOOLEAN?"
3020 " ?-nomutex BOOLEAN? ?-fullmutex BOOLEAN? ?-uri BOOLEAN?"
3021 #ifdef SQLITE_HAS_CODEC
3028 p
= (SqliteDb
*)Tcl_Alloc( sizeof(*p
) );
3030 Tcl_SetResult(interp
, "malloc failed", TCL_STATIC
);
3033 memset(p
, 0, sizeof(*p
));
3034 zFile
= Tcl_GetStringFromObj(objv
[2], 0);
3035 zFile
= Tcl_TranslateFileName(interp
, zFile
, &translatedFilename
);
3036 sqlite3_open_v2(zFile
, &p
->db
, flags
, zVfs
);
3037 Tcl_DStringFree(&translatedFilename
);
3038 if( SQLITE_OK
!=sqlite3_errcode(p
->db
) ){
3039 zErrMsg
= sqlite3_mprintf("%s", sqlite3_errmsg(p
->db
));
3040 sqlite3_close(p
->db
);
3043 #ifdef SQLITE_HAS_CODEC
3045 sqlite3_key(p
->db
, pKey
, nKey
);
3049 Tcl_SetResult(interp
, zErrMsg
, TCL_VOLATILE
);
3051 sqlite3_free(zErrMsg
);
3054 p
->maxStmt
= NUM_PREPARED_STMTS
;
3056 zArg
= Tcl_GetStringFromObj(objv
[1], 0);
3058 Tcl_NRCreateCommand(interp
, zArg
, DbObjCmdAdaptor
, DbObjCmd
,
3059 (char*)p
, DbDeleteCmd
);
3061 Tcl_CreateObjCommand(interp
, zArg
, DbObjCmd
, (char*)p
, DbDeleteCmd
);
3067 ** Provide a dummy Tcl_InitStubs if we are using this as a static
3070 #ifndef USE_TCL_STUBS
3071 # undef Tcl_InitStubs
3072 # define Tcl_InitStubs(a,b,c)
3076 ** Make sure we have a PACKAGE_VERSION macro defined. This will be
3077 ** defined automatically by the TEA makefile. But other makefiles
3078 ** do not define it.
3080 #ifndef PACKAGE_VERSION
3081 # define PACKAGE_VERSION SQLITE_VERSION
3085 ** Initialize this module.
3087 ** This Tcl module contains only a single new Tcl command named "sqlite".
3088 ** (Hence there is no namespace. There is no point in using a namespace
3089 ** if the extension only supplies one new name!) The "sqlite" command is
3090 ** used to open a new SQLite database. See the DbMain() routine above
3091 ** for additional information.
3093 ** The EXTERN macros are required by TCL in order to work on windows.
3095 EXTERN
int Sqlite3_Init(Tcl_Interp
*interp
){
3096 Tcl_InitStubs(interp
, "8.4", 0);
3097 Tcl_CreateObjCommand(interp
, "sqlite3", (Tcl_ObjCmdProc
*)DbMain
, 0, 0);
3098 Tcl_PkgProvide(interp
, "sqlite3", PACKAGE_VERSION
);
3100 #ifndef SQLITE_3_SUFFIX_ONLY
3101 /* The "sqlite" alias is undocumented. It is here only to support
3102 ** legacy scripts. All new scripts should use only the "sqlite3"
3105 Tcl_CreateObjCommand(interp
, "sqlite", (Tcl_ObjCmdProc
*)DbMain
, 0, 0);
3110 EXTERN
int Tclsqlite3_Init(Tcl_Interp
*interp
){ return Sqlite3_Init(interp
); }
3111 EXTERN
int Sqlite3_Unload(Tcl_Interp
*interp
, int flags
){ return TCL_OK
; }
3112 EXTERN
int Tclsqlite3_Unload(Tcl_Interp
*interp
, int flags
){ return TCL_OK
; }
3114 /* Because it accesses the file-system and uses persistent state, SQLite
3115 ** is not considered appropriate for safe interpreters. Hence, we deliberately
3116 ** omit the _SafeInit() interfaces.
3119 #ifndef SQLITE_3_SUFFIX_ONLY
3120 int Sqlite_Init(Tcl_Interp
*interp
){ return Sqlite3_Init(interp
); }
3121 int Tclsqlite_Init(Tcl_Interp
*interp
){ return Sqlite3_Init(interp
); }
3122 int Sqlite_Unload(Tcl_Interp
*interp
, int flags
){ return TCL_OK
; }
3123 int Tclsqlite_Unload(Tcl_Interp
*interp
, int flags
){ return TCL_OK
; }
3127 /*****************************************************************************
3128 ** All of the code that follows is used to build standalone TCL interpreters
3129 ** that are statically linked with SQLite. Enable these by compiling
3130 ** with -DTCLSH=n where n can be 1 or 2. An n of 1 generates a standard
3131 ** tclsh but with SQLite built in. An n of 2 generates the SQLite space
3132 ** analysis program.
3135 #if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
3137 * This code implements the MD5 message-digest algorithm.
3138 * The algorithm is due to Ron Rivest. This code was
3139 * written by Colin Plumb in 1993, no copyright is claimed.
3140 * This code is in the public domain; do with it what you wish.
3142 * Equivalent code is available from RSA Data Security, Inc.
3143 * This code has been tested against that, and is equivalent,
3144 * except that you don't need to include two pages of legalese
3147 * To compute the message digest of a chunk of bytes, declare an
3148 * MD5Context structure, pass it to MD5Init, call MD5Update as
3149 * needed on buffers full of bytes, and then call MD5Final, which
3150 * will fill a supplied 16-byte array with the digest.
3154 * If compiled on a machine that doesn't have a 32-bit integer,
3155 * you just set "uint32" to the appropriate datatype for an
3156 * unsigned 32-bit integer. For example:
3158 * cc -Duint32='unsigned long' md5.c
3162 # define uint32 unsigned int
3169 unsigned char in
[64];
3171 typedef struct MD5Context MD5Context
;
3174 * Note: this code is harmless on little-endian machines.
3176 static void byteReverse (unsigned char *buf
, unsigned longs
){
3179 t
= (uint32
)((unsigned)buf
[3]<<8 | buf
[2]) << 16 |
3180 ((unsigned)buf
[1]<<8 | buf
[0]);
3185 /* The four core functions - F1 is optimized somewhat */
3187 /* #define F1(x, y, z) (x & y | ~x & z) */
3188 #define F1(x, y, z) (z ^ (x & (y ^ z)))
3189 #define F2(x, y, z) F1(z, x, y)
3190 #define F3(x, y, z) (x ^ y ^ z)
3191 #define F4(x, y, z) (y ^ (x | ~z))
3193 /* This is the central step in the MD5 algorithm. */
3194 #define MD5STEP(f, w, x, y, z, data, s) \
3195 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
3198 * The core of the MD5 algorithm, this alters an existing MD5 hash to
3199 * reflect the addition of 16 longwords of new data. MD5Update blocks
3200 * the data and converts bytes into longwords for this routine.
3202 static void MD5Transform(uint32 buf
[4], const uint32 in
[16]){
3203 register uint32 a
, b
, c
, d
;
3210 MD5STEP(F1
, a
, b
, c
, d
, in
[ 0]+0xd76aa478, 7);
3211 MD5STEP(F1
, d
, a
, b
, c
, in
[ 1]+0xe8c7b756, 12);
3212 MD5STEP(F1
, c
, d
, a
, b
, in
[ 2]+0x242070db, 17);
3213 MD5STEP(F1
, b
, c
, d
, a
, in
[ 3]+0xc1bdceee, 22);
3214 MD5STEP(F1
, a
, b
, c
, d
, in
[ 4]+0xf57c0faf, 7);
3215 MD5STEP(F1
, d
, a
, b
, c
, in
[ 5]+0x4787c62a, 12);
3216 MD5STEP(F1
, c
, d
, a
, b
, in
[ 6]+0xa8304613, 17);
3217 MD5STEP(F1
, b
, c
, d
, a
, in
[ 7]+0xfd469501, 22);
3218 MD5STEP(F1
, a
, b
, c
, d
, in
[ 8]+0x698098d8, 7);
3219 MD5STEP(F1
, d
, a
, b
, c
, in
[ 9]+0x8b44f7af, 12);
3220 MD5STEP(F1
, c
, d
, a
, b
, in
[10]+0xffff5bb1, 17);
3221 MD5STEP(F1
, b
, c
, d
, a
, in
[11]+0x895cd7be, 22);
3222 MD5STEP(F1
, a
, b
, c
, d
, in
[12]+0x6b901122, 7);
3223 MD5STEP(F1
, d
, a
, b
, c
, in
[13]+0xfd987193, 12);
3224 MD5STEP(F1
, c
, d
, a
, b
, in
[14]+0xa679438e, 17);
3225 MD5STEP(F1
, b
, c
, d
, a
, in
[15]+0x49b40821, 22);
3227 MD5STEP(F2
, a
, b
, c
, d
, in
[ 1]+0xf61e2562, 5);
3228 MD5STEP(F2
, d
, a
, b
, c
, in
[ 6]+0xc040b340, 9);
3229 MD5STEP(F2
, c
, d
, a
, b
, in
[11]+0x265e5a51, 14);
3230 MD5STEP(F2
, b
, c
, d
, a
, in
[ 0]+0xe9b6c7aa, 20);
3231 MD5STEP(F2
, a
, b
, c
, d
, in
[ 5]+0xd62f105d, 5);
3232 MD5STEP(F2
, d
, a
, b
, c
, in
[10]+0x02441453, 9);
3233 MD5STEP(F2
, c
, d
, a
, b
, in
[15]+0xd8a1e681, 14);
3234 MD5STEP(F2
, b
, c
, d
, a
, in
[ 4]+0xe7d3fbc8, 20);
3235 MD5STEP(F2
, a
, b
, c
, d
, in
[ 9]+0x21e1cde6, 5);
3236 MD5STEP(F2
, d
, a
, b
, c
, in
[14]+0xc33707d6, 9);
3237 MD5STEP(F2
, c
, d
, a
, b
, in
[ 3]+0xf4d50d87, 14);
3238 MD5STEP(F2
, b
, c
, d
, a
, in
[ 8]+0x455a14ed, 20);
3239 MD5STEP(F2
, a
, b
, c
, d
, in
[13]+0xa9e3e905, 5);
3240 MD5STEP(F2
, d
, a
, b
, c
, in
[ 2]+0xfcefa3f8, 9);
3241 MD5STEP(F2
, c
, d
, a
, b
, in
[ 7]+0x676f02d9, 14);
3242 MD5STEP(F2
, b
, c
, d
, a
, in
[12]+0x8d2a4c8a, 20);
3244 MD5STEP(F3
, a
, b
, c
, d
, in
[ 5]+0xfffa3942, 4);
3245 MD5STEP(F3
, d
, a
, b
, c
, in
[ 8]+0x8771f681, 11);
3246 MD5STEP(F3
, c
, d
, a
, b
, in
[11]+0x6d9d6122, 16);
3247 MD5STEP(F3
, b
, c
, d
, a
, in
[14]+0xfde5380c, 23);
3248 MD5STEP(F3
, a
, b
, c
, d
, in
[ 1]+0xa4beea44, 4);
3249 MD5STEP(F3
, d
, a
, b
, c
, in
[ 4]+0x4bdecfa9, 11);
3250 MD5STEP(F3
, c
, d
, a
, b
, in
[ 7]+0xf6bb4b60, 16);
3251 MD5STEP(F3
, b
, c
, d
, a
, in
[10]+0xbebfbc70, 23);
3252 MD5STEP(F3
, a
, b
, c
, d
, in
[13]+0x289b7ec6, 4);
3253 MD5STEP(F3
, d
, a
, b
, c
, in
[ 0]+0xeaa127fa, 11);
3254 MD5STEP(F3
, c
, d
, a
, b
, in
[ 3]+0xd4ef3085, 16);
3255 MD5STEP(F3
, b
, c
, d
, a
, in
[ 6]+0x04881d05, 23);
3256 MD5STEP(F3
, a
, b
, c
, d
, in
[ 9]+0xd9d4d039, 4);
3257 MD5STEP(F3
, d
, a
, b
, c
, in
[12]+0xe6db99e5, 11);
3258 MD5STEP(F3
, c
, d
, a
, b
, in
[15]+0x1fa27cf8, 16);
3259 MD5STEP(F3
, b
, c
, d
, a
, in
[ 2]+0xc4ac5665, 23);
3261 MD5STEP(F4
, a
, b
, c
, d
, in
[ 0]+0xf4292244, 6);
3262 MD5STEP(F4
, d
, a
, b
, c
, in
[ 7]+0x432aff97, 10);
3263 MD5STEP(F4
, c
, d
, a
, b
, in
[14]+0xab9423a7, 15);
3264 MD5STEP(F4
, b
, c
, d
, a
, in
[ 5]+0xfc93a039, 21);
3265 MD5STEP(F4
, a
, b
, c
, d
, in
[12]+0x655b59c3, 6);
3266 MD5STEP(F4
, d
, a
, b
, c
, in
[ 3]+0x8f0ccc92, 10);
3267 MD5STEP(F4
, c
, d
, a
, b
, in
[10]+0xffeff47d, 15);
3268 MD5STEP(F4
, b
, c
, d
, a
, in
[ 1]+0x85845dd1, 21);
3269 MD5STEP(F4
, a
, b
, c
, d
, in
[ 8]+0x6fa87e4f, 6);
3270 MD5STEP(F4
, d
, a
, b
, c
, in
[15]+0xfe2ce6e0, 10);
3271 MD5STEP(F4
, c
, d
, a
, b
, in
[ 6]+0xa3014314, 15);
3272 MD5STEP(F4
, b
, c
, d
, a
, in
[13]+0x4e0811a1, 21);
3273 MD5STEP(F4
, a
, b
, c
, d
, in
[ 4]+0xf7537e82, 6);
3274 MD5STEP(F4
, d
, a
, b
, c
, in
[11]+0xbd3af235, 10);
3275 MD5STEP(F4
, c
, d
, a
, b
, in
[ 2]+0x2ad7d2bb, 15);
3276 MD5STEP(F4
, b
, c
, d
, a
, in
[ 9]+0xeb86d391, 21);
3285 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
3286 * initialization constants.
3288 static void MD5Init(MD5Context
*ctx
){
3290 ctx
->buf
[0] = 0x67452301;
3291 ctx
->buf
[1] = 0xefcdab89;
3292 ctx
->buf
[2] = 0x98badcfe;
3293 ctx
->buf
[3] = 0x10325476;
3299 * Update context to reflect the concatenation of another buffer full
3303 void MD5Update(MD5Context
*ctx
, const unsigned char *buf
, unsigned int len
){
3306 /* Update bitcount */
3309 if ((ctx
->bits
[0] = t
+ ((uint32
)len
<< 3)) < t
)
3310 ctx
->bits
[1]++; /* Carry from low to high */
3311 ctx
->bits
[1] += len
>> 29;
3313 t
= (t
>> 3) & 0x3f; /* Bytes already in shsInfo->data */
3315 /* Handle any leading odd-sized chunks */
3318 unsigned char *p
= (unsigned char *)ctx
->in
+ t
;
3322 memcpy(p
, buf
, len
);
3326 byteReverse(ctx
->in
, 16);
3327 MD5Transform(ctx
->buf
, (uint32
*)ctx
->in
);
3332 /* Process data in 64-byte chunks */
3335 memcpy(ctx
->in
, buf
, 64);
3336 byteReverse(ctx
->in
, 16);
3337 MD5Transform(ctx
->buf
, (uint32
*)ctx
->in
);
3342 /* Handle any remaining bytes of data. */
3344 memcpy(ctx
->in
, buf
, len
);
3348 * Final wrapup - pad to 64-byte boundary with the bit pattern
3349 * 1 0* (64-bit count of bits processed, MSB-first)
3351 static void MD5Final(unsigned char digest
[16], MD5Context
*ctx
){
3355 /* Compute number of bytes mod 64 */
3356 count
= (ctx
->bits
[0] >> 3) & 0x3F;
3358 /* Set the first char of padding to 0x80. This is safe since there is
3359 always at least one byte free */
3360 p
= ctx
->in
+ count
;
3363 /* Bytes of padding needed to make 64 bytes */
3364 count
= 64 - 1 - count
;
3366 /* Pad out to 56 mod 64 */
3368 /* Two lots of padding: Pad the first block to 64 bytes */
3369 memset(p
, 0, count
);
3370 byteReverse(ctx
->in
, 16);
3371 MD5Transform(ctx
->buf
, (uint32
*)ctx
->in
);
3373 /* Now fill the next block with 56 bytes */
3374 memset(ctx
->in
, 0, 56);
3376 /* Pad block to 56 bytes */
3377 memset(p
, 0, count
-8);
3379 byteReverse(ctx
->in
, 14);
3381 /* Append length in bits and transform */
3382 ((uint32
*)ctx
->in
)[ 14 ] = ctx
->bits
[0];
3383 ((uint32
*)ctx
->in
)[ 15 ] = ctx
->bits
[1];
3385 MD5Transform(ctx
->buf
, (uint32
*)ctx
->in
);
3386 byteReverse((unsigned char *)ctx
->buf
, 4);
3387 memcpy(digest
, ctx
->buf
, 16);
3388 memset(ctx
, 0, sizeof(ctx
)); /* In case it is sensitive */
3392 ** Convert a 128-bit MD5 digest into a 32-digit base-16 number.
3394 static void MD5DigestToBase16(unsigned char *digest
, char *zBuf
){
3395 static char const zEncode
[] = "0123456789abcdef";
3398 for(j
=i
=0; i
<16; i
++){
3400 zBuf
[j
++] = zEncode
[(a
>>4)&0xf];
3401 zBuf
[j
++] = zEncode
[a
& 0xf];
3408 ** Convert a 128-bit MD5 digest into sequency of eight 5-digit integers
3409 ** each representing 16 bits of the digest and separated from each
3410 ** other by a "-" character.
3412 static void MD5DigestToBase10x8(unsigned char digest
[16], char zDigest
[50]){
3415 for(i
=j
=0; i
<16; i
+=2){
3416 x
= digest
[i
]*256 + digest
[i
+1];
3417 if( i
>0 ) zDigest
[j
++] = '-';
3418 sprintf(&zDigest
[j
], "%05u", x
);
3425 ** A TCL command for md5. The argument is the text to be hashed. The
3426 ** Result is the hash in base64.
3428 static int md5_cmd(void*cd
, Tcl_Interp
*interp
, int argc
, const char **argv
){
3430 unsigned char digest
[16];
3432 void (*converter
)(unsigned char*, char*);
3435 Tcl_AppendResult(interp
,"wrong # args: should be \"", argv
[0],
3440 MD5Update(&ctx
, (unsigned char*)argv
[1], (unsigned)strlen(argv
[1]));
3441 MD5Final(digest
, &ctx
);
3442 converter
= (void(*)(unsigned char*,char*))cd
;
3443 converter(digest
, zBuf
);
3444 Tcl_AppendResult(interp
, zBuf
, (char*)0);
3449 ** A TCL command to take the md5 hash of a file. The argument is the
3450 ** name of the file.
3452 static int md5file_cmd(void*cd
, Tcl_Interp
*interp
, int argc
, const char **argv
){
3455 void (*converter
)(unsigned char*, char*);
3456 unsigned char digest
[16];
3460 Tcl_AppendResult(interp
,"wrong # args: should be \"", argv
[0],
3464 in
= fopen(argv
[1],"rb");
3466 Tcl_AppendResult(interp
,"unable to open file \"", argv
[1],
3467 "\" for reading", 0);
3473 n
= (int)fread(zBuf
, 1, sizeof(zBuf
), in
);
3475 MD5Update(&ctx
, (unsigned char*)zBuf
, (unsigned)n
);
3478 MD5Final(digest
, &ctx
);
3479 converter
= (void(*)(unsigned char*,char*))cd
;
3480 converter(digest
, zBuf
);
3481 Tcl_AppendResult(interp
, zBuf
, (char*)0);
3486 ** Register the four new TCL commands for generating MD5 checksums
3487 ** with the TCL interpreter.
3489 int Md5_Init(Tcl_Interp
*interp
){
3490 Tcl_CreateCommand(interp
, "md5", (Tcl_CmdProc
*)md5_cmd
,
3491 MD5DigestToBase16
, 0);
3492 Tcl_CreateCommand(interp
, "md5-10x8", (Tcl_CmdProc
*)md5_cmd
,
3493 MD5DigestToBase10x8
, 0);
3494 Tcl_CreateCommand(interp
, "md5file", (Tcl_CmdProc
*)md5file_cmd
,
3495 MD5DigestToBase16
, 0);
3496 Tcl_CreateCommand(interp
, "md5file-10x8", (Tcl_CmdProc
*)md5file_cmd
,
3497 MD5DigestToBase10x8
, 0);
3500 #endif /* defined(SQLITE_TEST) || defined(SQLITE_TCLMD5) */
3502 #if defined(SQLITE_TEST)
3504 ** During testing, the special md5sum() aggregate function is available.
3505 ** inside SQLite. The following routines implement that function.
3507 static void md5step(sqlite3_context
*context
, int argc
, sqlite3_value
**argv
){
3510 if( argc
<1 ) return;
3511 p
= sqlite3_aggregate_context(context
, sizeof(*p
));
3516 for(i
=0; i
<argc
; i
++){
3517 const char *zData
= (char*)sqlite3_value_text(argv
[i
]);
3519 MD5Update(p
, (unsigned char*)zData
, (int)strlen(zData
));
3523 static void md5finalize(sqlite3_context
*context
){
3525 unsigned char digest
[16];
3527 p
= sqlite3_aggregate_context(context
, sizeof(*p
));
3529 MD5DigestToBase16(digest
, zBuf
);
3530 sqlite3_result_text(context
, zBuf
, -1, SQLITE_TRANSIENT
);
3532 int Md5_Register(sqlite3
*db
){
3533 int rc
= sqlite3_create_function(db
, "md5sum", -1, SQLITE_UTF8
, 0, 0,
3534 md5step
, md5finalize
);
3535 sqlite3_overload_function(db
, "md5sum", -1); /* To exercise this API */
3538 #endif /* defined(SQLITE_TEST) */
3542 ** If the macro TCLSH is one, then put in code this for the
3543 ** "main" routine that will initialize Tcl and take input from
3544 ** standard input, or if a file is named on the command line
3545 ** the TCL interpreter reads and evaluates that file.
3548 static const char *tclsh_main_loop(void){
3549 static const char zMainloop
[] =
3551 "while {![eof stdin]} {\n"
3552 "if {$line!=\"\"} {\n"
3553 "puts -nonewline \"> \"\n"
3555 "puts -nonewline \"% \"\n"
3558 "append line [gets stdin]\n"
3559 "if {[info complete $line]} {\n"
3560 "if {[catch {uplevel #0 $line} result]} {\n"
3561 "puts stderr \"Error: $result\"\n"
3562 "} elseif {$result!=\"\"} {\n"
3575 static const char *tclsh_main_loop(void);
3579 static void init_all(Tcl_Interp
*);
3580 static int init_all_cmd(
3584 Tcl_Obj
*CONST objv
[]
3589 Tcl_WrongNumArgs(interp
, 1, objv
, "SLAVE");
3593 slave
= Tcl_GetSlave(interp
, Tcl_GetString(objv
[1]));
3603 ** Tclcmd: db_use_legacy_prepare DB BOOLEAN
3605 ** The first argument to this command must be a database command created by
3606 ** [sqlite3]. If the second argument is true, then the handle is configured
3607 ** to use the sqlite3_prepare_v2() function to prepare statements. If it
3608 ** is false, sqlite3_prepare().
3610 static int db_use_legacy_prepare_cmd(
3614 Tcl_Obj
*CONST objv
[]
3616 Tcl_CmdInfo cmdInfo
;
3621 Tcl_WrongNumArgs(interp
, 1, objv
, "DB BOOLEAN");
3625 if( !Tcl_GetCommandInfo(interp
, Tcl_GetString(objv
[1]), &cmdInfo
) ){
3626 Tcl_AppendResult(interp
, "no such db: ", Tcl_GetString(objv
[1]), (char*)0);
3629 pDb
= (SqliteDb
*)cmdInfo
.objClientData
;
3630 if( Tcl_GetBooleanFromObj(interp
, objv
[2], &bPrepare
) ){
3634 pDb
->bLegacyPrepare
= bPrepare
;
3636 Tcl_ResetResult(interp
);
3642 ** Configure the interpreter passed as the first argument to have access
3643 ** to the commands and linked variables that make up:
3645 ** * the [sqlite3] extension itself,
3647 ** * If SQLITE_TCLMD5 or SQLITE_TEST is defined, the Md5 commands, and
3649 ** * If SQLITE_TEST is set, the various test interfaces used by the Tcl
3652 static void init_all(Tcl_Interp
*interp
){
3653 Sqlite3_Init(interp
);
3655 #if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
3659 /* Install the [register_dbstat_vtab] command to access the implementation
3660 ** of virtual table dbstat (source file test_stat.c). This command is
3661 ** required for testfixture and sqlite3_analyzer, but not by the production
3662 ** Tcl extension. */
3663 #if defined(SQLITE_TEST) || TCLSH==2
3665 extern int SqlitetestStat_Init(Tcl_Interp
*);
3666 SqlitetestStat_Init(interp
);
3672 extern int Sqliteconfig_Init(Tcl_Interp
*);
3673 extern int Sqlitetest1_Init(Tcl_Interp
*);
3674 extern int Sqlitetest2_Init(Tcl_Interp
*);
3675 extern int Sqlitetest3_Init(Tcl_Interp
*);
3676 extern int Sqlitetest4_Init(Tcl_Interp
*);
3677 extern int Sqlitetest5_Init(Tcl_Interp
*);
3678 extern int Sqlitetest6_Init(Tcl_Interp
*);
3679 extern int Sqlitetest7_Init(Tcl_Interp
*);
3680 extern int Sqlitetest8_Init(Tcl_Interp
*);
3681 extern int Sqlitetest9_Init(Tcl_Interp
*);
3682 extern int Sqlitetestasync_Init(Tcl_Interp
*);
3683 extern int Sqlitetest_autoext_Init(Tcl_Interp
*);
3684 extern int Sqlitetest_demovfs_Init(Tcl_Interp
*);
3685 extern int Sqlitetest_func_Init(Tcl_Interp
*);
3686 extern int Sqlitetest_hexio_Init(Tcl_Interp
*);
3687 extern int Sqlitetest_init_Init(Tcl_Interp
*);
3688 extern int Sqlitetest_malloc_Init(Tcl_Interp
*);
3689 extern int Sqlitetest_mutex_Init(Tcl_Interp
*);
3690 extern int Sqlitetestschema_Init(Tcl_Interp
*);
3691 extern int Sqlitetestsse_Init(Tcl_Interp
*);
3692 extern int Sqlitetesttclvar_Init(Tcl_Interp
*);
3693 extern int SqlitetestThread_Init(Tcl_Interp
*);
3694 extern int SqlitetestOnefile_Init();
3695 extern int SqlitetestOsinst_Init(Tcl_Interp
*);
3696 extern int Sqlitetestbackup_Init(Tcl_Interp
*);
3697 extern int Sqlitetestintarray_Init(Tcl_Interp
*);
3698 extern int Sqlitetestvfs_Init(Tcl_Interp
*);
3699 extern int Sqlitetestrtree_Init(Tcl_Interp
*);
3700 extern int Sqlitequota_Init(Tcl_Interp
*);
3701 extern int Sqlitemultiplex_Init(Tcl_Interp
*);
3702 extern int SqliteSuperlock_Init(Tcl_Interp
*);
3703 extern int SqlitetestSyscall_Init(Tcl_Interp
*);
3704 extern int Sqlitetestfuzzer_Init(Tcl_Interp
*);
3705 extern int Sqlitetestwholenumber_Init(Tcl_Interp
*);
3707 #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
3708 extern int Sqlitetestfts3_Init(Tcl_Interp
*interp
);
3711 #ifdef SQLITE_ENABLE_ZIPVFS
3712 extern int Zipvfs_Init(Tcl_Interp
*);
3713 Zipvfs_Init(interp
);
3716 Sqliteconfig_Init(interp
);
3717 Sqlitetest1_Init(interp
);
3718 Sqlitetest2_Init(interp
);
3719 Sqlitetest3_Init(interp
);
3720 Sqlitetest4_Init(interp
);
3721 Sqlitetest5_Init(interp
);
3722 Sqlitetest6_Init(interp
);
3723 Sqlitetest7_Init(interp
);
3724 Sqlitetest8_Init(interp
);
3725 Sqlitetest9_Init(interp
);
3726 Sqlitetestasync_Init(interp
);
3727 Sqlitetest_autoext_Init(interp
);
3728 Sqlitetest_demovfs_Init(interp
);
3729 Sqlitetest_func_Init(interp
);
3730 Sqlitetest_hexio_Init(interp
);
3731 Sqlitetest_init_Init(interp
);
3732 Sqlitetest_malloc_Init(interp
);
3733 Sqlitetest_mutex_Init(interp
);
3734 Sqlitetestschema_Init(interp
);
3735 Sqlitetesttclvar_Init(interp
);
3736 SqlitetestThread_Init(interp
);
3737 SqlitetestOnefile_Init(interp
);
3738 SqlitetestOsinst_Init(interp
);
3739 Sqlitetestbackup_Init(interp
);
3740 Sqlitetestintarray_Init(interp
);
3741 Sqlitetestvfs_Init(interp
);
3742 Sqlitetestrtree_Init(interp
);
3743 Sqlitequota_Init(interp
);
3744 Sqlitemultiplex_Init(interp
);
3745 SqliteSuperlock_Init(interp
);
3746 SqlitetestSyscall_Init(interp
);
3747 Sqlitetestfuzzer_Init(interp
);
3748 Sqlitetestwholenumber_Init(interp
);
3750 #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
3751 Sqlitetestfts3_Init(interp
);
3754 Tcl_CreateObjCommand(
3755 interp
, "load_testfixture_extensions", init_all_cmd
, 0, 0
3757 Tcl_CreateObjCommand(
3758 interp
, "db_use_legacy_prepare", db_use_legacy_prepare_cmd
, 0, 0
3762 Sqlitetestsse_Init(interp
);
3768 #define TCLSH_MAIN main /* Needed to fake out mktclapp */
3769 int TCLSH_MAIN(int argc
, char **argv
){
3772 /* Call sqlite3_shutdown() once before doing anything else. This is to
3773 ** test that sqlite3_shutdown() can be safely called by a process before
3774 ** sqlite3_initialize() is. */
3777 Tcl_FindExecutable(argv
[0]);
3778 interp
= Tcl_CreateInterp();
3781 sqlite3_config(SQLITE_CONFIG_SINGLETHREAD
);
3788 sqlite3_snprintf(sizeof(zArgc
), zArgc
, "%d", argc
-(3-TCLSH
));
3789 Tcl_SetVar(interp
,"argc", zArgc
, TCL_GLOBAL_ONLY
);
3790 Tcl_SetVar(interp
,"argv0",argv
[1],TCL_GLOBAL_ONLY
);
3791 Tcl_SetVar(interp
,"argv", "", TCL_GLOBAL_ONLY
);
3792 for(i
=3-TCLSH
; i
<argc
; i
++){
3793 Tcl_SetVar(interp
, "argv", argv
[i
],
3794 TCL_GLOBAL_ONLY
| TCL_LIST_ELEMENT
| TCL_APPEND_VALUE
);
3796 if( TCLSH
==1 && Tcl_EvalFile(interp
, argv
[1])!=TCL_OK
){
3797 const char *zInfo
= Tcl_GetVar(interp
, "errorInfo", TCL_GLOBAL_ONLY
);
3798 if( zInfo
==0 ) zInfo
= Tcl_GetStringResult(interp
);
3799 fprintf(stderr
,"%s: %s\n", *argv
, zInfo
);
3803 if( TCLSH
==2 || argc
<=1 ){
3804 Tcl_GlobalEval(interp
, tclsh_main_loop());