2001-04-07 19:24:33 +04:00
|
|
|
/*
|
2001-09-16 04:13:26 +04:00
|
|
|
** 2001 September 15
|
2001-04-07 19:24:33 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** The author disclaims copyright to this source code. In place of
|
|
|
|
** a legal notice, here is a blessing:
|
2001-04-07 19:24:33 +04:00
|
|
|
**
|
2001-09-16 04:13:26 +04:00
|
|
|
** May you do good and not evil.
|
|
|
|
** May you find forgiveness for yourself and forgive others.
|
|
|
|
** May you share freely, never taking more than you give.
|
2001-04-07 19:24:33 +04:00
|
|
|
**
|
|
|
|
*************************************************************************
|
|
|
|
** Code for testing the printf() interface to SQLite. This code
|
|
|
|
** is not included in the SQLite library. It is used for automated
|
|
|
|
** testing of the SQLite library.
|
|
|
|
**
|
2003-02-16 22:13:36 +03:00
|
|
|
** $Id: test1.c,v 1.21 2003/02/16 19:13:37 drh Exp $
|
2001-04-07 19:24:33 +04:00
|
|
|
*/
|
|
|
|
#include "sqliteInt.h"
|
|
|
|
#include "tcl.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2003-01-29 02:13:10 +03:00
|
|
|
/*
|
|
|
|
** Decode a pointer to an sqlite object.
|
|
|
|
*/
|
|
|
|
static int getDbPointer(Tcl_Interp *interp, const char *zArg, sqlite **ppDb){
|
|
|
|
if( sscanf(zArg, "%p", (void**)ppDb)!=1 ){
|
|
|
|
Tcl_AppendResult(interp, "\"", zArg, "\" is not a valid pointer value", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Decode a pointer to an sqlite_vm object.
|
|
|
|
*/
|
|
|
|
static int getVmPointer(Tcl_Interp *interp, const char *zArg, sqlite_vm **ppVm){
|
|
|
|
if( sscanf(zArg, "%p", (void**)ppVm)!=1 ){
|
|
|
|
Tcl_AppendResult(interp, "\"", zArg, "\" is not a valid pointer value", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2001-04-07 19:24:33 +04:00
|
|
|
/*
|
|
|
|
** Usage: sqlite_open filename
|
|
|
|
**
|
|
|
|
** Returns: The name of an open database.
|
|
|
|
*/
|
|
|
|
static int sqlite_test_open(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
char *zErr = 0;
|
|
|
|
char zBuf[100];
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" FILENAME\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
db = sqlite_open(argv[1], 0666, &zErr);
|
|
|
|
if( db==0 ){
|
|
|
|
Tcl_AppendResult(interp, zErr, 0);
|
|
|
|
free(zErr);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
sprintf(zBuf,"%p", db);
|
2001-04-07 19:24:33 +04:00
|
|
|
Tcl_AppendResult(interp, zBuf, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The callback routine for sqlite_exec_printf().
|
|
|
|
*/
|
|
|
|
static int exec_printf_cb(void *pArg, int argc, char **argv, char **name){
|
|
|
|
Tcl_DString *str = (Tcl_DString*)pArg;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if( Tcl_DStringLength(str)==0 ){
|
|
|
|
for(i=0; i<argc; i++){
|
|
|
|
Tcl_DStringAppendElement(str, name[i] ? name[i] : "NULL");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(i=0; i<argc; i++){
|
|
|
|
Tcl_DStringAppendElement(str, argv[i] ? argv[i] : "NULL");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_exec_printf DB FORMAT STRING
|
|
|
|
**
|
|
|
|
** Invoke the sqlite_exec_printf() interface using the open database
|
|
|
|
** DB. The SQL is the string FORMAT. The format string should contain
|
|
|
|
** one %s or %q. STRING is the value inserted into %s or %q.
|
|
|
|
*/
|
|
|
|
static int test_exec_printf(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
Tcl_DString str;
|
|
|
|
int rc;
|
|
|
|
char *zErr = 0;
|
|
|
|
char zBuf[30];
|
|
|
|
if( argc!=4 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" DB FORMAT STRING", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2001-04-07 19:24:33 +04:00
|
|
|
Tcl_DStringInit(&str);
|
|
|
|
rc = sqlite_exec_printf(db, argv[2], exec_printf_cb, &str, &zErr, argv[3]);
|
|
|
|
sprintf(zBuf, "%d", rc);
|
|
|
|
Tcl_AppendElement(interp, zBuf);
|
|
|
|
Tcl_AppendElement(interp, rc==SQLITE_OK ? Tcl_DStringValue(&str) : zErr);
|
|
|
|
Tcl_DStringFree(&str);
|
|
|
|
if( zErr ) free(zErr);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_get_table_printf DB FORMAT STRING
|
|
|
|
**
|
|
|
|
** Invoke the sqlite_get_table_printf() interface using the open database
|
|
|
|
** DB. The SQL is the string FORMAT. The format string should contain
|
|
|
|
** one %s or %q. STRING is the value inserted into %s or %q.
|
|
|
|
*/
|
|
|
|
static int test_get_table_printf(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
Tcl_DString str;
|
|
|
|
int rc;
|
|
|
|
char *zErr = 0;
|
|
|
|
int nRow, nCol;
|
|
|
|
char **aResult;
|
|
|
|
int i;
|
|
|
|
char zBuf[30];
|
|
|
|
if( argc!=4 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" DB FORMAT STRING", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2001-04-07 19:24:33 +04:00
|
|
|
Tcl_DStringInit(&str);
|
|
|
|
rc = sqlite_get_table_printf(db, argv[2], &aResult, &nRow, &nCol,
|
|
|
|
&zErr, argv[3]);
|
|
|
|
sprintf(zBuf, "%d", rc);
|
|
|
|
Tcl_AppendElement(interp, zBuf);
|
|
|
|
if( rc==SQLITE_OK ){
|
|
|
|
sprintf(zBuf, "%d", nRow);
|
|
|
|
Tcl_AppendElement(interp, zBuf);
|
|
|
|
sprintf(zBuf, "%d", nCol);
|
|
|
|
Tcl_AppendElement(interp, zBuf);
|
|
|
|
for(i=0; i<(nRow+1)*nCol; i++){
|
|
|
|
Tcl_AppendElement(interp, aResult[i] ? aResult[i] : "NULL");
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
Tcl_AppendElement(interp, zErr);
|
|
|
|
}
|
|
|
|
sqlite_free_table(aResult);
|
|
|
|
if( zErr ) free(zErr);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2002-01-17 00:00:27 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_last_insert_rowid DB
|
|
|
|
**
|
|
|
|
** Returns the integer ROWID of the most recent insert.
|
|
|
|
*/
|
|
|
|
static int test_last_rowid(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
char zBuf[30];
|
|
|
|
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " DB\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2002-01-17 00:00:27 +03:00
|
|
|
sprintf(zBuf, "%d", sqlite_last_insert_rowid(db));
|
|
|
|
Tcl_AppendResult(interp, zBuf, 0);
|
|
|
|
return SQLITE_OK;
|
|
|
|
}
|
|
|
|
|
2001-04-07 19:24:33 +04:00
|
|
|
/*
|
|
|
|
** Usage: sqlite_close DB
|
|
|
|
**
|
|
|
|
** Closes the database opened by sqlite_open.
|
|
|
|
*/
|
|
|
|
static int sqlite_test_close(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" FILENAME\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2001-04-07 19:24:33 +04:00
|
|
|
sqlite_close(db);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2002-05-10 17:14:07 +04:00
|
|
|
/*
|
|
|
|
** Implementation of the x_coalesce() function.
|
|
|
|
** Return the first argument non-NULL argument.
|
|
|
|
*/
|
|
|
|
static void ifnullFunc(sqlite_func *context, int argc, const char **argv){
|
|
|
|
int i;
|
|
|
|
for(i=0; i<argc; i++){
|
|
|
|
if( argv[i] ){
|
|
|
|
sqlite_set_result_string(context, argv[i], -1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Implementation of the x_sqlite_exec() function. This function takes
|
|
|
|
** a single argument and attempts to execute that argument as SQL code.
|
2002-07-01 04:31:36 +04:00
|
|
|
** This is illegal and should set the SQLITE_MISUSE flag on the database.
|
2002-05-10 17:14:07 +04:00
|
|
|
**
|
|
|
|
** This routine simulates the effect of having two threads attempt to
|
|
|
|
** use the same database at the same time.
|
|
|
|
*/
|
|
|
|
static void sqliteExecFunc(sqlite_func *context, int argc, const char **argv){
|
|
|
|
sqlite_exec((sqlite*)sqlite_user_data(context), argv[0], 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_test_create_function DB
|
|
|
|
**
|
|
|
|
** Call the sqlite_create_function API on the given database in order
|
|
|
|
** to create a function named "x_coalesce". This function does the same thing
|
|
|
|
** as the "coalesce" function. This function also registers an SQL function
|
|
|
|
** named "x_sqlite_exec" that invokes sqlite_exec(). Invoking sqlite_exec()
|
|
|
|
** in this way is illegal recursion and should raise an SQLITE_MISUSE error.
|
|
|
|
** The effect is similar to trying to use the same database connection from
|
|
|
|
** two threads at the same time.
|
|
|
|
**
|
|
|
|
** The original motivation for this routine was to be able to call the
|
|
|
|
** sqlite_create_function function while a query is in progress in order
|
|
|
|
** to test the SQLITE_MISUSE detection logic.
|
|
|
|
*/
|
2002-08-31 22:53:06 +04:00
|
|
|
static int test_create_function(
|
2002-05-10 17:14:07 +04:00
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
extern void Md5_Register(sqlite*);
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" FILENAME\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2002-05-10 17:14:07 +04:00
|
|
|
sqlite_create_function(db, "x_coalesce", -1, ifnullFunc, 0);
|
|
|
|
sqlite_create_function(db, "x_sqlite_exec", 1, sqliteExecFunc, db);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Routines to implement the x_count() aggregate function.
|
|
|
|
*/
|
|
|
|
typedef struct CountCtx CountCtx;
|
|
|
|
struct CountCtx {
|
|
|
|
int n;
|
|
|
|
};
|
|
|
|
static void countStep(sqlite_func *context, int argc, const char **argv){
|
|
|
|
CountCtx *p;
|
|
|
|
p = sqlite_aggregate_context(context, sizeof(*p));
|
|
|
|
if( (argc==0 || argv[0]) && p ){
|
|
|
|
p->n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void countFinalize(sqlite_func *context){
|
|
|
|
CountCtx *p;
|
|
|
|
p = sqlite_aggregate_context(context, sizeof(*p));
|
|
|
|
sqlite_set_result_int(context, p ? p->n : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_test_create_aggregate DB
|
|
|
|
**
|
|
|
|
** Call the sqlite_create_function API on the given database in order
|
|
|
|
** to create a function named "x_count". This function does the same thing
|
|
|
|
** as the "md5sum" function.
|
|
|
|
**
|
|
|
|
** The original motivation for this routine was to be able to call the
|
|
|
|
** sqlite_create_aggregate function while a query is in progress in order
|
|
|
|
** to test the SQLITE_MISUSE detection logic.
|
|
|
|
*/
|
2002-08-31 22:53:06 +04:00
|
|
|
static int test_create_aggregate(
|
2002-05-10 17:14:07 +04:00
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" FILENAME\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2002-05-10 17:14:07 +04:00
|
|
|
sqlite_create_aggregate(db, "x_count", 0, countStep, countFinalize, 0);
|
|
|
|
sqlite_create_aggregate(db, "x_count", 1, countStep, countFinalize, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-04-07 19:24:33 +04:00
|
|
|
/*
|
|
|
|
** Usage: sqlite_mprintf_int FORMAT INTEGER INTEGER INTEGER
|
|
|
|
**
|
|
|
|
** Call mprintf with three integer arguments
|
|
|
|
*/
|
|
|
|
static int sqlite_mprintf_int(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
int a[3], i;
|
|
|
|
char *z;
|
|
|
|
if( argc!=5 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" FORMAT INT INT INT\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
for(i=2; i<5; i++){
|
|
|
|
if( Tcl_GetInt(interp, argv[i], &a[i-2]) ) return TCL_ERROR;
|
|
|
|
}
|
|
|
|
z = sqlite_mprintf(argv[1], a[0], a[1], a[2]);
|
|
|
|
Tcl_AppendResult(interp, z, 0);
|
2002-07-11 01:26:00 +04:00
|
|
|
sqlite_freemem(z);
|
2001-04-07 19:24:33 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_mprintf_str FORMAT INTEGER INTEGER STRING
|
|
|
|
**
|
|
|
|
** Call mprintf with two integer arguments and one string argument
|
|
|
|
*/
|
|
|
|
static int sqlite_mprintf_str(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
int a[3], i;
|
|
|
|
char *z;
|
2002-06-16 08:54:28 +04:00
|
|
|
if( argc<4 || argc>5 ){
|
2001-04-07 19:24:33 +04:00
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
2002-06-16 08:54:28 +04:00
|
|
|
" FORMAT INT INT ?STRING?\"", 0);
|
2001-04-07 19:24:33 +04:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
for(i=2; i<4; i++){
|
|
|
|
if( Tcl_GetInt(interp, argv[i], &a[i-2]) ) return TCL_ERROR;
|
|
|
|
}
|
2002-06-16 08:54:28 +04:00
|
|
|
z = sqlite_mprintf(argv[1], a[0], a[1], argc>4 ? argv[4] : NULL);
|
2001-04-07 19:24:33 +04:00
|
|
|
Tcl_AppendResult(interp, z, 0);
|
2002-07-11 01:26:00 +04:00
|
|
|
sqlite_freemem(z);
|
2001-04-07 19:24:33 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_mprintf_str FORMAT INTEGER INTEGER DOUBLE
|
|
|
|
**
|
|
|
|
** Call mprintf with two integer arguments and one double argument
|
|
|
|
*/
|
|
|
|
static int sqlite_mprintf_double(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
int a[3], i;
|
|
|
|
double r;
|
|
|
|
char *z;
|
|
|
|
if( argc!=5 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" FORMAT INT INT STRING\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
for(i=2; i<4; i++){
|
|
|
|
if( Tcl_GetInt(interp, argv[i], &a[i-2]) ) return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( Tcl_GetDouble(interp, argv[4], &r) ) return TCL_ERROR;
|
|
|
|
z = sqlite_mprintf(argv[1], a[0], a[1], r);
|
|
|
|
Tcl_AppendResult(interp, z, 0);
|
2002-07-11 01:26:00 +04:00
|
|
|
sqlite_freemem(z);
|
2001-04-07 19:24:33 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2001-04-11 18:28:42 +04:00
|
|
|
/*
|
|
|
|
** Usage: sqlite_malloc_fail N
|
|
|
|
**
|
2001-09-24 07:12:39 +04:00
|
|
|
** Rig sqliteMalloc() to fail on the N-th call. Turn off this mechanism
|
2001-04-11 18:28:42 +04:00
|
|
|
** and reset the sqlite_malloc_failed variable is N==0.
|
|
|
|
*/
|
|
|
|
#ifdef MEMORY_DEBUG
|
|
|
|
static int sqlite_malloc_fail(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
int n;
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " N\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( Tcl_GetInt(interp, argv[1], &n) ) return TCL_ERROR;
|
|
|
|
sqlite_iMallocFail = n;
|
|
|
|
sqlite_malloc_failed = 0;
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_malloc_stat
|
|
|
|
**
|
|
|
|
** Return the number of prior calls to sqliteMalloc() and sqliteFree().
|
|
|
|
*/
|
|
|
|
#ifdef MEMORY_DEBUG
|
|
|
|
static int sqlite_malloc_stat(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
char zBuf[200];
|
|
|
|
sprintf(zBuf, "%d %d %d", sqlite_nMalloc, sqlite_nFree, sqlite_iMallocFail);
|
|
|
|
Tcl_AppendResult(interp, zBuf, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-03-11 05:06:13 +03:00
|
|
|
/*
|
|
|
|
** Usage: sqlite_abort
|
|
|
|
**
|
|
|
|
** Shutdown the process immediately. This is not a clean shutdown.
|
|
|
|
** This command is used to test the recoverability of a database in
|
|
|
|
** the event of a program crash.
|
|
|
|
*/
|
|
|
|
static int sqlite_abort(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
assert( interp==0 ); /* This will always fail */
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2002-07-01 04:31:36 +04:00
|
|
|
/*
|
|
|
|
** The following routine is a user-defined SQL function whose purpose
|
|
|
|
** is to test the sqlite_set_result() API.
|
|
|
|
*/
|
|
|
|
static void testFunc(sqlite_func *context, int argc, const char **argv){
|
|
|
|
while( argc>=2 ){
|
|
|
|
if( argv[0]==0 ){
|
|
|
|
sqlite_set_result_error(context, "first argument to test function "
|
|
|
|
"may not be NULL", -1);
|
|
|
|
}else if( sqliteStrICmp(argv[0],"string")==0 ){
|
|
|
|
sqlite_set_result_string(context, argv[1], -1);
|
|
|
|
}else if( argv[1]==0 ){
|
|
|
|
sqlite_set_result_error(context, "2nd argument may not be NULL if the "
|
|
|
|
"first argument is not \"string\"", -1);
|
|
|
|
}else if( sqliteStrICmp(argv[0],"int")==0 ){
|
|
|
|
sqlite_set_result_int(context, atoi(argv[1]));
|
|
|
|
}else if( sqliteStrICmp(argv[0],"double")==0 ){
|
|
|
|
sqlite_set_result_double(context, atof(argv[1]));
|
|
|
|
}else{
|
|
|
|
sqlite_set_result_error(context,"first argument should be one of: "
|
|
|
|
"string int double", -1);
|
|
|
|
}
|
|
|
|
argc -= 2;
|
|
|
|
argv += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_register_test_function DB NAME
|
|
|
|
**
|
|
|
|
** Register the test SQL function on the database DB under the name NAME.
|
|
|
|
*/
|
2002-08-31 22:53:06 +04:00
|
|
|
static int test_register_func(
|
2002-07-01 04:31:36 +04:00
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
int rc;
|
|
|
|
if( argc!=3 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" DB FUNCTION-NAME", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2002-07-01 04:31:36 +04:00
|
|
|
rc = sqlite_create_function(db, argv[2], -1, testFunc, 0);
|
|
|
|
if( rc!=0 ){
|
|
|
|
Tcl_AppendResult(interp, sqlite_error_string(rc), 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2003-01-11 17:19:51 +03:00
|
|
|
/*
|
|
|
|
** This SQLite callback records the datatype of all columns.
|
|
|
|
**
|
|
|
|
** The pArg argument is really a pointer to a TCL interpreter. The
|
|
|
|
** column names are inserted as the result of this interpreter.
|
|
|
|
**
|
|
|
|
** This routine returns non-zero which causes the query to abort.
|
|
|
|
*/
|
|
|
|
static int rememberDataTypes(void *pArg, int nCol, char **argv, char **colv){
|
|
|
|
int i;
|
|
|
|
Tcl_Interp *interp = (Tcl_Interp*)pArg;
|
|
|
|
Tcl_Obj *pList, *pElem;
|
|
|
|
if( colv[nCol+1]==0 ){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
pList = Tcl_NewObj();
|
|
|
|
for(i=0; i<nCol; i++){
|
|
|
|
pElem = Tcl_NewStringObj(colv[i+nCol] ? colv[i+nCol] : "NULL", -1);
|
|
|
|
Tcl_ListObjAppendElement(interp, pList, pElem);
|
|
|
|
}
|
|
|
|
Tcl_SetObjResult(interp, pList);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Invoke an SQL statement but ignore all the data in the result. Instead,
|
|
|
|
** return a list that consists of the datatypes of the various columns.
|
|
|
|
**
|
|
|
|
** This only works if "PRAGMA show_datatypes=on" has been executed against
|
|
|
|
** the database connection.
|
|
|
|
*/
|
|
|
|
static int sqlite_datatypes(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
int rc;
|
|
|
|
if( argc!=3 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" DB SQL", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2003-01-11 17:19:51 +03:00
|
|
|
rc = sqlite_exec(db, argv[2], rememberDataTypes, interp, 0);
|
|
|
|
if( rc!=0 && rc!=SQLITE_ABORT ){
|
|
|
|
Tcl_AppendResult(interp, sqlite_error_string(rc), 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2003-01-12 21:02:16 +03:00
|
|
|
#ifndef SQLITE_OMIT_AUTHORIZATION
|
|
|
|
/*
|
|
|
|
** Information used by the authentication function.
|
|
|
|
*/
|
|
|
|
typedef struct AuthInfo AuthInfo;
|
|
|
|
struct AuthInfo {
|
|
|
|
Tcl_Interp *interp; /* Interpreter to use */
|
|
|
|
int nCmd; /* Number of characters in zCmd[] */
|
|
|
|
char zCmd[500]; /* Command to invoke */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** We create a single static authenticator. This won't work in a
|
|
|
|
** multi-threaded environment, but the test fixture is not multithreaded.
|
|
|
|
** And be making it static, we don't have to worry about deallocating
|
|
|
|
** after a test in order to void memory leaks.
|
|
|
|
*/
|
|
|
|
static AuthInfo authInfo;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This is the authentication function. It appends the authentication
|
|
|
|
** type code and the two arguments to zCmd[] then invokes the result
|
|
|
|
** on the interpreter. The reply is examined to determine if the
|
|
|
|
** authentication fails or succeeds.
|
|
|
|
*/
|
|
|
|
static int auth_callback(
|
|
|
|
void *NotUsed,
|
|
|
|
int code,
|
|
|
|
const char *zArg1,
|
|
|
|
const char *zArg2
|
|
|
|
){
|
|
|
|
char *zCode;
|
|
|
|
Tcl_DString str;
|
|
|
|
int rc;
|
|
|
|
const char *zReply;
|
|
|
|
switch( code ){
|
2003-01-14 02:27:31 +03:00
|
|
|
case SQLITE_COPY : zCode="SQLITE_COPY"; break;
|
|
|
|
case SQLITE_CREATE_INDEX : zCode="SQLITE_CREATE_INDEX"; break;
|
|
|
|
case SQLITE_CREATE_TABLE : zCode="SQLITE_CREATE_TABLE"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_INDEX : zCode="SQLITE_CREATE_TEMP_INDEX"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_TABLE : zCode="SQLITE_CREATE_TEMP_TABLE"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_TRIGGER: zCode="SQLITE_CREATE_TEMP_TRIGGER"; break;
|
|
|
|
case SQLITE_CREATE_TEMP_VIEW : zCode="SQLITE_CREATE_TEMP_VIEW"; break;
|
|
|
|
case SQLITE_CREATE_TRIGGER : zCode="SQLITE_CREATE_TRIGGER"; break;
|
|
|
|
case SQLITE_CREATE_VIEW : zCode="SQLITE_CREATE_VIEW"; break;
|
|
|
|
case SQLITE_DELETE : zCode="SQLITE_DELETE"; break;
|
|
|
|
case SQLITE_DROP_INDEX : zCode="SQLITE_DROP_INDEX"; break;
|
|
|
|
case SQLITE_DROP_TABLE : zCode="SQLITE_DROP_TABLE"; break;
|
|
|
|
case SQLITE_DROP_TEMP_INDEX : zCode="SQLITE_DROP_TEMP_INDEX"; break;
|
|
|
|
case SQLITE_DROP_TEMP_TABLE : zCode="SQLITE_DROP_TEMP_TABLE"; break;
|
|
|
|
case SQLITE_DROP_TEMP_TRIGGER : zCode="SQLITE_DROP_TEMP_TRIGGER"; break;
|
|
|
|
case SQLITE_DROP_TEMP_VIEW : zCode="SQLITE_DROP_TEMP_VIEW"; break;
|
|
|
|
case SQLITE_DROP_TRIGGER : zCode="SQLITE_DROP_TRIGGER"; break;
|
|
|
|
case SQLITE_DROP_VIEW : zCode="SQLITE_DROP_VIEW"; break;
|
|
|
|
case SQLITE_INSERT : zCode="SQLITE_INSERT"; break;
|
|
|
|
case SQLITE_PRAGMA : zCode="SQLITE_PRAGMA"; break;
|
|
|
|
case SQLITE_READ : zCode="SQLITE_READ"; break;
|
|
|
|
case SQLITE_SELECT : zCode="SQLITE_SELECT"; break;
|
|
|
|
case SQLITE_TRANSACTION : zCode="SQLITE_TRANSACTION"; break;
|
|
|
|
case SQLITE_UPDATE : zCode="SQLITE_UPDATE"; break;
|
|
|
|
default : zCode="????"; break;
|
2003-01-12 21:02:16 +03:00
|
|
|
}
|
|
|
|
Tcl_DStringInit(&str);
|
|
|
|
Tcl_DStringAppend(&str, authInfo.zCmd, -1);
|
|
|
|
Tcl_DStringAppendElement(&str, zCode);
|
2003-01-14 02:27:31 +03:00
|
|
|
Tcl_DStringAppendElement(&str, zArg1 ? zArg1 : "");
|
2003-01-12 21:02:16 +03:00
|
|
|
Tcl_DStringAppendElement(&str, zArg2 ? zArg2 : "");
|
|
|
|
rc = Tcl_GlobalEval(authInfo.interp, Tcl_DStringValue(&str));
|
|
|
|
Tcl_DStringFree(&str);
|
|
|
|
zReply = Tcl_GetStringResult(authInfo.interp);
|
|
|
|
if( strcmp(zReply,"SQLITE_OK")==0 ){
|
|
|
|
rc = SQLITE_OK;
|
|
|
|
}else if( strcmp(zReply,"SQLITE_DENY")==0 ){
|
|
|
|
rc = SQLITE_DENY;
|
|
|
|
}else if( strcmp(zReply,"SQLITE_IGNORE")==0 ){
|
|
|
|
rc = SQLITE_IGNORE;
|
|
|
|
}else{
|
|
|
|
rc = 999;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine creates a new authenticator. It fills in the zCmd[]
|
|
|
|
** field of the authentication function state variable and then registers
|
|
|
|
** the authentication function with the SQLite library.
|
|
|
|
*/
|
|
|
|
static int test_set_authorizer(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
char *zCmd;
|
|
|
|
if( argc!=3 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" DB CALLBACK\"", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
2003-01-12 21:02:16 +03:00
|
|
|
zCmd = argv[2];
|
|
|
|
if( zCmd[0]==0 ){
|
|
|
|
sqlite_set_authorizer(db, 0, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
if( strlen(zCmd)>sizeof(authInfo.zCmd) ){
|
|
|
|
Tcl_AppendResult(interp, "command too big", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
authInfo.interp = interp;
|
|
|
|
authInfo.nCmd = strlen(zCmd);
|
|
|
|
strcpy(authInfo.zCmd, zCmd);
|
|
|
|
sqlite_set_authorizer(db, auth_callback, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
#endif /* SQLITE_OMIT_AUTHORIZATION */
|
2003-01-11 17:19:51 +03:00
|
|
|
|
2003-01-29 02:13:10 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_compile DB SQL TAILVAR
|
|
|
|
**
|
|
|
|
** Attempt to compile an SQL statement. Return a pointer to the virtual
|
|
|
|
** machine used to execute that statement. Unprocessed SQL is written
|
|
|
|
** into TAILVAR.
|
|
|
|
*/
|
|
|
|
static int test_compile(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite *db;
|
|
|
|
sqlite_vm *vm;
|
|
|
|
int rc;
|
|
|
|
char *zErr = 0;
|
|
|
|
const char *zTail;
|
|
|
|
char zBuf[50];
|
|
|
|
if( argc!=4 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" DB SQL TAILVAR", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( getDbPointer(interp, argv[1], &db) ) return TCL_ERROR;
|
|
|
|
rc = sqlite_compile(db, argv[2], &zTail, &vm, &zErr);
|
2003-01-29 21:46:51 +03:00
|
|
|
Tcl_SetVar(interp, argv[3], zTail, 0);
|
2003-01-29 02:13:10 +03:00
|
|
|
if( rc ){
|
|
|
|
assert( vm==0 );
|
|
|
|
sprintf(zBuf, "(%d) ", rc);
|
|
|
|
Tcl_AppendResult(interp, zBuf, zErr, 0);
|
|
|
|
sqlite_freemem(zErr);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2003-01-29 17:06:07 +03:00
|
|
|
if( vm ){
|
|
|
|
sprintf(zBuf, "%p", vm);
|
|
|
|
Tcl_AppendResult(interp, zBuf, 0);
|
|
|
|
}
|
2003-01-29 02:13:10 +03:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_step VM NVAR VALUEVAR COLNAMEVAR
|
|
|
|
**
|
|
|
|
** Step a virtual machine. Return a the result code as a string.
|
|
|
|
** Column results are written into three variables.
|
|
|
|
*/
|
|
|
|
static int test_step(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite_vm *vm;
|
|
|
|
int rc, i;
|
2003-01-30 01:58:26 +03:00
|
|
|
const char **azValue = 0;
|
|
|
|
const char **azColName = 0;
|
|
|
|
int N = 0;
|
2003-01-29 02:13:10 +03:00
|
|
|
char *zRc;
|
|
|
|
char zBuf[50];
|
|
|
|
if( argc!=5 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
|
|
|
" VM NVAR VALUEVAR COLNAMEVAR", 0);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( getVmPointer(interp, argv[1], &vm) ) return TCL_ERROR;
|
|
|
|
rc = sqlite_step(vm, &N, &azValue, &azColName);
|
2003-01-30 01:58:26 +03:00
|
|
|
sprintf(zBuf, "%d", N);
|
|
|
|
Tcl_SetVar(interp, argv[2], zBuf, 0);
|
|
|
|
Tcl_SetVar(interp, argv[3], "", 0);
|
|
|
|
if( azValue ){
|
|
|
|
for(i=0; i<N; i++){
|
|
|
|
Tcl_SetVar(interp, argv[3], azValue[i] ? azValue[i] : "",
|
|
|
|
TCL_APPEND_VALUE | TCL_LIST_ELEMENT);
|
2003-01-29 02:13:10 +03:00
|
|
|
}
|
2003-01-30 01:58:26 +03:00
|
|
|
}
|
|
|
|
Tcl_SetVar(interp, argv[4], "", 0);
|
|
|
|
if( azColName ){
|
2003-01-29 02:13:10 +03:00
|
|
|
for(i=0; i<N*2; i++){
|
2003-01-29 17:06:07 +03:00
|
|
|
Tcl_SetVar(interp, argv[4], azColName[i] ? azColName[i] : "",
|
2003-01-29 02:13:10 +03:00
|
|
|
TCL_APPEND_VALUE | TCL_LIST_ELEMENT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch( rc ){
|
|
|
|
case SQLITE_DONE: zRc = "SQLITE_DONE"; break;
|
2003-01-29 17:06:07 +03:00
|
|
|
case SQLITE_BUSY: zRc = "SQLITE_BUSY"; break;
|
|
|
|
case SQLITE_ROW: zRc = "SQLITE_ROW"; break;
|
|
|
|
case SQLITE_ERROR: zRc = "SQLITE_ERROR"; break;
|
2003-01-29 02:13:10 +03:00
|
|
|
case SQLITE_MISUSE: zRc = "SQLITE_MISUSE"; break;
|
|
|
|
default: zRc = "unknown"; break;
|
|
|
|
}
|
|
|
|
Tcl_AppendResult(interp, zRc, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Usage: sqlite_finalize VM
|
|
|
|
**
|
|
|
|
** Shutdown a virtual machine.
|
|
|
|
*/
|
|
|
|
static int test_finalize(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
sqlite_vm *vm;
|
|
|
|
int rc;
|
|
|
|
char *zErrMsg = 0;
|
|
|
|
if( argc!=2 ){
|
|
|
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
2003-01-29 17:06:07 +03:00
|
|
|
" VM\"", 0);
|
2003-01-29 02:13:10 +03:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( getVmPointer(interp, argv[1], &vm) ) return TCL_ERROR;
|
|
|
|
rc = sqlite_finalize(vm, &zErrMsg);
|
|
|
|
if( rc ){
|
|
|
|
char zBuf[50];
|
|
|
|
sprintf(zBuf, "(%d) ", rc);
|
|
|
|
Tcl_AppendResult(interp, zBuf, zErrMsg, 0);
|
|
|
|
sqlite_freemem(zErrMsg);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2003-02-16 22:13:36 +03:00
|
|
|
/*
|
|
|
|
** Usage: breakpoint
|
|
|
|
**
|
|
|
|
** This routine exists for one purpose - to provide a place to put a
|
|
|
|
** breakpoint with GDB that can be triggered using TCL code. The use
|
|
|
|
** for this is when a particular test fails on (say) the 1485th iteration.
|
|
|
|
** In the TCL test script, we can add code like this:
|
|
|
|
**
|
|
|
|
** if {$i==1485} breakpoint
|
|
|
|
**
|
|
|
|
** Then run testfixture in the debugger and wait for the breakpoint to
|
|
|
|
** fire. Then additional breakpoints can be set to trace down the bug.
|
|
|
|
*/
|
|
|
|
static int test_breakpoint(
|
|
|
|
void *NotUsed,
|
|
|
|
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
|
|
|
int argc, /* Number of arguments */
|
|
|
|
char **argv /* Text of each argument */
|
|
|
|
){
|
|
|
|
return TCL_OK; /* Do nothing */
|
|
|
|
}
|
|
|
|
|
2001-04-07 19:24:33 +04:00
|
|
|
/*
|
|
|
|
** Register commands with the TCL interpreter.
|
|
|
|
*/
|
|
|
|
int Sqlitetest1_Init(Tcl_Interp *interp){
|
2001-11-08 03:45:21 +03:00
|
|
|
extern int sqlite_search_count;
|
2002-08-31 22:53:06 +04:00
|
|
|
static struct {
|
|
|
|
char *zName;
|
|
|
|
Tcl_CmdProc *xProc;
|
|
|
|
} aCmd[] = {
|
|
|
|
{ "sqlite_mprintf_int", (Tcl_CmdProc*)sqlite_mprintf_int },
|
|
|
|
{ "sqlite_mprintf_str", (Tcl_CmdProc*)sqlite_mprintf_str },
|
|
|
|
{ "sqlite_mprintf_double", (Tcl_CmdProc*)sqlite_mprintf_double },
|
|
|
|
{ "sqlite_open", (Tcl_CmdProc*)sqlite_test_open },
|
|
|
|
{ "sqlite_last_insert_rowid", (Tcl_CmdProc*)test_last_rowid },
|
|
|
|
{ "sqlite_exec_printf", (Tcl_CmdProc*)test_exec_printf },
|
|
|
|
{ "sqlite_get_table_printf", (Tcl_CmdProc*)test_get_table_printf },
|
|
|
|
{ "sqlite_close", (Tcl_CmdProc*)sqlite_test_close },
|
|
|
|
{ "sqlite_create_function", (Tcl_CmdProc*)test_create_function },
|
|
|
|
{ "sqlite_create_aggregate", (Tcl_CmdProc*)test_create_aggregate },
|
|
|
|
{ "sqlite_register_test_function", (Tcl_CmdProc*)test_register_func },
|
|
|
|
{ "sqlite_abort", (Tcl_CmdProc*)sqlite_abort },
|
2003-01-11 17:19:51 +03:00
|
|
|
{ "sqlite_datatypes", (Tcl_CmdProc*)sqlite_datatypes },
|
2003-01-12 21:02:16 +03:00
|
|
|
#ifndef SQLITE_OMIT_AUTHORIZATION
|
|
|
|
{ "sqlite_set_authorizer", (Tcl_CmdProc*)test_set_authorizer },
|
|
|
|
#endif
|
2001-04-11 18:28:42 +04:00
|
|
|
#ifdef MEMORY_DEBUG
|
2002-08-31 22:53:06 +04:00
|
|
|
{ "sqlite_malloc_fail", (Tcl_CmdProc*)sqlite_malloc_fail },
|
|
|
|
{ "sqlite_malloc_stat", (Tcl_CmdProc*)sqlite_malloc_stat },
|
2001-04-11 18:28:42 +04:00
|
|
|
#endif
|
2003-01-29 02:13:10 +03:00
|
|
|
{ "sqlite_compile", (Tcl_CmdProc*)test_compile },
|
|
|
|
{ "sqlite_step", (Tcl_CmdProc*)test_step },
|
|
|
|
{ "sqlite_finalize", (Tcl_CmdProc*)test_finalize },
|
2003-02-16 22:13:36 +03:00
|
|
|
{ "breakpoint", (Tcl_CmdProc*)test_breakpoint },
|
2002-08-31 22:53:06 +04:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=0; i<sizeof(aCmd)/sizeof(aCmd[0]); i++){
|
|
|
|
Tcl_CreateCommand(interp, aCmd[i].zName, aCmd[i].xProc, 0, 0);
|
|
|
|
}
|
|
|
|
Tcl_LinkVar(interp, "sqlite_search_count",
|
|
|
|
(char*)&sqlite_search_count, TCL_LINK_INT);
|
2001-04-07 19:24:33 +04:00
|
|
|
return TCL_OK;
|
|
|
|
}
|