1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite/vdbeapi.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1275 @@
1.4 +/*
1.5 +** 2004 May 26
1.6 +**
1.7 +** The author disclaims copyright to this source code. In place of
1.8 +** a legal notice, here is a blessing:
1.9 +**
1.10 +** May you do good and not evil.
1.11 +** May you find forgiveness for yourself and forgive others.
1.12 +** May you share freely, never taking more than you give.
1.13 +**
1.14 +*************************************************************************
1.15 +**
1.16 +** This file contains code use to implement APIs that are part of the
1.17 +** VDBE.
1.18 +**
1.19 +** $Id: vdbeapi.c,v 1.138 2008/08/02 03:50:39 drh Exp $
1.20 +*/
1.21 +#include "sqliteInt.h"
1.22 +#include "vdbeInt.h"
1.23 +
1.24 +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
1.25 +/*
1.26 +** The following structure contains pointers to the end points of a
1.27 +** doubly-linked list of all compiled SQL statements that may be holding
1.28 +** buffers eligible for release when the sqlite3_release_memory() interface is
1.29 +** invoked. Access to this list is protected by the SQLITE_MUTEX_STATIC_LRU2
1.30 +** mutex.
1.31 +**
1.32 +** Statements are added to the end of this list when sqlite3_reset() is
1.33 +** called. They are removed either when sqlite3_step() or sqlite3_finalize()
1.34 +** is called. When statements are added to this list, the associated
1.35 +** register array (p->aMem[1..p->nMem]) may contain dynamic buffers that
1.36 +** can be freed using sqlite3VdbeReleaseMemory().
1.37 +**
1.38 +** When statements are added or removed from this list, the mutex
1.39 +** associated with the Vdbe being added or removed (Vdbe.db->mutex) is
1.40 +** already held. The LRU2 mutex is then obtained, blocking if necessary,
1.41 +** the linked-list pointers manipulated and the LRU2 mutex relinquished.
1.42 +*/
1.43 +struct StatementLruList {
1.44 + Vdbe *pFirst;
1.45 + Vdbe *pLast;
1.46 +};
1.47 +static struct StatementLruList sqlite3LruStatements;
1.48 +
1.49 +/*
1.50 +** Check that the list looks to be internally consistent. This is used
1.51 +** as part of an assert() statement as follows:
1.52 +**
1.53 +** assert( stmtLruCheck() );
1.54 +*/
1.55 +#ifndef NDEBUG
1.56 +static int stmtLruCheck(){
1.57 + Vdbe *p;
1.58 + for(p=sqlite3LruStatements.pFirst; p; p=p->pLruNext){
1.59 + assert(p->pLruNext || p==sqlite3LruStatements.pLast);
1.60 + assert(!p->pLruNext || p->pLruNext->pLruPrev==p);
1.61 + assert(p->pLruPrev || p==sqlite3LruStatements.pFirst);
1.62 + assert(!p->pLruPrev || p->pLruPrev->pLruNext==p);
1.63 + }
1.64 + return 1;
1.65 +}
1.66 +#endif
1.67 +
1.68 +/*
1.69 +** Add vdbe p to the end of the statement lru list. It is assumed that
1.70 +** p is not already part of the list when this is called. The lru list
1.71 +** is protected by the SQLITE_MUTEX_STATIC_LRU mutex.
1.72 +*/
1.73 +static void stmtLruAdd(Vdbe *p){
1.74 + sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.75 +
1.76 + if( p->pLruPrev || p->pLruNext || sqlite3LruStatements.pFirst==p ){
1.77 + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.78 + return;
1.79 + }
1.80 +
1.81 + assert( stmtLruCheck() );
1.82 +
1.83 + if( !sqlite3LruStatements.pFirst ){
1.84 + assert( !sqlite3LruStatements.pLast );
1.85 + sqlite3LruStatements.pFirst = p;
1.86 + sqlite3LruStatements.pLast = p;
1.87 + }else{
1.88 + assert( !sqlite3LruStatements.pLast->pLruNext );
1.89 + p->pLruPrev = sqlite3LruStatements.pLast;
1.90 + sqlite3LruStatements.pLast->pLruNext = p;
1.91 + sqlite3LruStatements.pLast = p;
1.92 + }
1.93 +
1.94 + assert( stmtLruCheck() );
1.95 +
1.96 + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.97 +}
1.98 +
1.99 +/*
1.100 +** Assuming the SQLITE_MUTEX_STATIC_LRU2 mutext is already held, remove
1.101 +** statement p from the least-recently-used statement list. If the
1.102 +** statement is not currently part of the list, this call is a no-op.
1.103 +*/
1.104 +static void stmtLruRemoveNomutex(Vdbe *p){
1.105 + if( p->pLruPrev || p->pLruNext || p==sqlite3LruStatements.pFirst ){
1.106 + assert( stmtLruCheck() );
1.107 + if( p->pLruNext ){
1.108 + p->pLruNext->pLruPrev = p->pLruPrev;
1.109 + }else{
1.110 + sqlite3LruStatements.pLast = p->pLruPrev;
1.111 + }
1.112 + if( p->pLruPrev ){
1.113 + p->pLruPrev->pLruNext = p->pLruNext;
1.114 + }else{
1.115 + sqlite3LruStatements.pFirst = p->pLruNext;
1.116 + }
1.117 + p->pLruNext = 0;
1.118 + p->pLruPrev = 0;
1.119 + assert( stmtLruCheck() );
1.120 + }
1.121 +}
1.122 +
1.123 +/*
1.124 +** Assuming the SQLITE_MUTEX_STATIC_LRU2 mutext is not held, remove
1.125 +** statement p from the least-recently-used statement list. If the
1.126 +** statement is not currently part of the list, this call is a no-op.
1.127 +*/
1.128 +static void stmtLruRemove(Vdbe *p){
1.129 + sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.130 + stmtLruRemoveNomutex(p);
1.131 + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.132 +}
1.133 +
1.134 +/*
1.135 +** Try to release n bytes of memory by freeing buffers associated
1.136 +** with the memory registers of currently unused vdbes.
1.137 +*/
1.138 +int sqlite3VdbeReleaseMemory(int n){
1.139 + Vdbe *p;
1.140 + Vdbe *pNext;
1.141 + int nFree = 0;
1.142 +
1.143 + sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.144 + for(p=sqlite3LruStatements.pFirst; p && nFree<n; p=pNext){
1.145 + pNext = p->pLruNext;
1.146 +
1.147 + /* For each statement handle in the lru list, attempt to obtain the
1.148 + ** associated database mutex. If it cannot be obtained, continue
1.149 + ** to the next statement handle. It is not possible to block on
1.150 + ** the database mutex - that could cause deadlock.
1.151 + */
1.152 + if( SQLITE_OK==sqlite3_mutex_try(p->db->mutex) ){
1.153 + nFree += sqlite3VdbeReleaseBuffers(p);
1.154 + stmtLruRemoveNomutex(p);
1.155 + sqlite3_mutex_leave(p->db->mutex);
1.156 + }
1.157 + }
1.158 + sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU2));
1.159 +
1.160 + return nFree;
1.161 +}
1.162 +
1.163 +/*
1.164 +** Call sqlite3Reprepare() on the statement. Remove it from the
1.165 +** lru list before doing so, as Reprepare() will free all the
1.166 +** memory register buffers anyway.
1.167 +*/
1.168 +int vdbeReprepare(Vdbe *p){
1.169 + stmtLruRemove(p);
1.170 + return sqlite3Reprepare(p);
1.171 +}
1.172 +
1.173 +#else /* !SQLITE_ENABLE_MEMORY_MANAGEMENT */
1.174 + #define stmtLruRemove(x)
1.175 + #define stmtLruAdd(x)
1.176 + #define vdbeReprepare(x) sqlite3Reprepare(x)
1.177 +#endif
1.178 +
1.179 +
1.180 +/*
1.181 +** Return TRUE (non-zero) of the statement supplied as an argument needs
1.182 +** to be recompiled. A statement needs to be recompiled whenever the
1.183 +** execution environment changes in a way that would alter the program
1.184 +** that sqlite3_prepare() generates. For example, if new functions or
1.185 +** collating sequences are registered or if an authorizer function is
1.186 +** added or changed.
1.187 +*/
1.188 +int sqlite3_expired(sqlite3_stmt *pStmt){
1.189 + Vdbe *p = (Vdbe*)pStmt;
1.190 + return p==0 || p->expired;
1.191 +}
1.192 +
1.193 +/*
1.194 +** The following routine destroys a virtual machine that is created by
1.195 +** the sqlite3_compile() routine. The integer returned is an SQLITE_
1.196 +** success/failure code that describes the result of executing the virtual
1.197 +** machine.
1.198 +**
1.199 +** This routine sets the error code and string returned by
1.200 +** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16().
1.201 +*/
1.202 +int sqlite3_finalize(sqlite3_stmt *pStmt){
1.203 + int rc;
1.204 + if( pStmt==0 ){
1.205 + rc = SQLITE_OK;
1.206 + }else{
1.207 + Vdbe *v = (Vdbe*)pStmt;
1.208 +#ifndef SQLITE_MUTEX_NOOP
1.209 + sqlite3_mutex *mutex = v->db->mutex;
1.210 +#endif
1.211 + sqlite3_mutex_enter(mutex);
1.212 + stmtLruRemove(v);
1.213 + rc = sqlite3VdbeFinalize(v);
1.214 + sqlite3_mutex_leave(mutex);
1.215 + }
1.216 + return rc;
1.217 +}
1.218 +
1.219 +/*
1.220 +** Terminate the current execution of an SQL statement and reset it
1.221 +** back to its starting state so that it can be reused. A success code from
1.222 +** the prior execution is returned.
1.223 +**
1.224 +** This routine sets the error code and string returned by
1.225 +** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16().
1.226 +*/
1.227 +int sqlite3_reset(sqlite3_stmt *pStmt){
1.228 + int rc;
1.229 + if( pStmt==0 ){
1.230 + rc = SQLITE_OK;
1.231 + }else{
1.232 + Vdbe *v = (Vdbe*)pStmt;
1.233 + sqlite3_mutex_enter(v->db->mutex);
1.234 + rc = sqlite3VdbeReset(v);
1.235 + stmtLruAdd(v);
1.236 + sqlite3VdbeMakeReady(v, -1, 0, 0, 0);
1.237 + assert( (rc & (v->db->errMask))==rc );
1.238 + sqlite3_mutex_leave(v->db->mutex);
1.239 + }
1.240 + return rc;
1.241 +}
1.242 +
1.243 +/*
1.244 +** Set all the parameters in the compiled SQL statement to NULL.
1.245 +*/
1.246 +int sqlite3_clear_bindings(sqlite3_stmt *pStmt){
1.247 + int i;
1.248 + int rc = SQLITE_OK;
1.249 + Vdbe *p = (Vdbe*)pStmt;
1.250 +#ifndef SQLITE_MUTEX_NOOP
1.251 + sqlite3_mutex *mutex = ((Vdbe*)pStmt)->db->mutex;
1.252 +#endif
1.253 + sqlite3_mutex_enter(mutex);
1.254 + for(i=0; i<p->nVar; i++){
1.255 + sqlite3VdbeMemRelease(&p->aVar[i]);
1.256 + p->aVar[i].flags = MEM_Null;
1.257 + }
1.258 + sqlite3_mutex_leave(mutex);
1.259 + return rc;
1.260 +}
1.261 +
1.262 +
1.263 +/**************************** sqlite3_value_ *******************************
1.264 +** The following routines extract information from a Mem or sqlite3_value
1.265 +** structure.
1.266 +*/
1.267 +const void *sqlite3_value_blob(sqlite3_value *pVal){
1.268 + Mem *p = (Mem*)pVal;
1.269 + if( p->flags & (MEM_Blob|MEM_Str) ){
1.270 + sqlite3VdbeMemExpandBlob(p);
1.271 + p->flags &= ~MEM_Str;
1.272 + p->flags |= MEM_Blob;
1.273 + return p->z;
1.274 + }else{
1.275 + return sqlite3_value_text(pVal);
1.276 + }
1.277 +}
1.278 +int sqlite3_value_bytes(sqlite3_value *pVal){
1.279 + return sqlite3ValueBytes(pVal, SQLITE_UTF8);
1.280 +}
1.281 +int sqlite3_value_bytes16(sqlite3_value *pVal){
1.282 + return sqlite3ValueBytes(pVal, SQLITE_UTF16NATIVE);
1.283 +}
1.284 +double sqlite3_value_double(sqlite3_value *pVal){
1.285 + return sqlite3VdbeRealValue((Mem*)pVal);
1.286 +}
1.287 +int sqlite3_value_int(sqlite3_value *pVal){
1.288 + return sqlite3VdbeIntValue((Mem*)pVal);
1.289 +}
1.290 +sqlite_int64 sqlite3_value_int64(sqlite3_value *pVal){
1.291 + return sqlite3VdbeIntValue((Mem*)pVal);
1.292 +}
1.293 +const unsigned char *sqlite3_value_text(sqlite3_value *pVal){
1.294 + return (const unsigned char *)sqlite3ValueText(pVal, SQLITE_UTF8);
1.295 +}
1.296 +#ifndef SQLITE_OMIT_UTF16
1.297 +const void *sqlite3_value_text16(sqlite3_value* pVal){
1.298 + return sqlite3ValueText(pVal, SQLITE_UTF16NATIVE);
1.299 +}
1.300 +const void *sqlite3_value_text16be(sqlite3_value *pVal){
1.301 + return sqlite3ValueText(pVal, SQLITE_UTF16BE);
1.302 +}
1.303 +const void *sqlite3_value_text16le(sqlite3_value *pVal){
1.304 + return sqlite3ValueText(pVal, SQLITE_UTF16LE);
1.305 +}
1.306 +#endif /* SQLITE_OMIT_UTF16 */
1.307 +int sqlite3_value_type(sqlite3_value* pVal){
1.308 + return pVal->type;
1.309 +}
1.310 +
1.311 +/**************************** sqlite3_result_ *******************************
1.312 +** The following routines are used by user-defined functions to specify
1.313 +** the function result.
1.314 +*/
1.315 +void sqlite3_result_blob(
1.316 + sqlite3_context *pCtx,
1.317 + const void *z,
1.318 + int n,
1.319 + void (*xDel)(void *)
1.320 +){
1.321 + assert( n>=0 );
1.322 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.323 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, 0, xDel);
1.324 +}
1.325 +void sqlite3_result_double(sqlite3_context *pCtx, double rVal){
1.326 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.327 + sqlite3VdbeMemSetDouble(&pCtx->s, rVal);
1.328 +}
1.329 +void sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n){
1.330 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.331 + pCtx->isError = SQLITE_ERROR;
1.332 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF8, SQLITE_TRANSIENT);
1.333 +}
1.334 +#ifndef SQLITE_OMIT_UTF16
1.335 +void sqlite3_result_error16(sqlite3_context *pCtx, const void *z, int n){
1.336 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.337 + pCtx->isError = SQLITE_ERROR;
1.338 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16NATIVE, SQLITE_TRANSIENT);
1.339 +}
1.340 +#endif
1.341 +void sqlite3_result_int(sqlite3_context *pCtx, int iVal){
1.342 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.343 + sqlite3VdbeMemSetInt64(&pCtx->s, (i64)iVal);
1.344 +}
1.345 +void sqlite3_result_int64(sqlite3_context *pCtx, i64 iVal){
1.346 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.347 + sqlite3VdbeMemSetInt64(&pCtx->s, iVal);
1.348 +}
1.349 +void sqlite3_result_null(sqlite3_context *pCtx){
1.350 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.351 + sqlite3VdbeMemSetNull(&pCtx->s);
1.352 +}
1.353 +void sqlite3_result_text(
1.354 + sqlite3_context *pCtx,
1.355 + const char *z,
1.356 + int n,
1.357 + void (*xDel)(void *)
1.358 +){
1.359 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.360 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF8, xDel);
1.361 +}
1.362 +#ifndef SQLITE_OMIT_UTF16
1.363 +void sqlite3_result_text16(
1.364 + sqlite3_context *pCtx,
1.365 + const void *z,
1.366 + int n,
1.367 + void (*xDel)(void *)
1.368 +){
1.369 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.370 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16NATIVE, xDel);
1.371 +}
1.372 +void sqlite3_result_text16be(
1.373 + sqlite3_context *pCtx,
1.374 + const void *z,
1.375 + int n,
1.376 + void (*xDel)(void *)
1.377 +){
1.378 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.379 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16BE, xDel);
1.380 +}
1.381 +void sqlite3_result_text16le(
1.382 + sqlite3_context *pCtx,
1.383 + const void *z,
1.384 + int n,
1.385 + void (*xDel)(void *)
1.386 +){
1.387 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.388 + sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16LE, xDel);
1.389 +}
1.390 +#endif /* SQLITE_OMIT_UTF16 */
1.391 +void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){
1.392 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.393 + sqlite3VdbeMemCopy(&pCtx->s, pValue);
1.394 +}
1.395 +void sqlite3_result_zeroblob(sqlite3_context *pCtx, int n){
1.396 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.397 + sqlite3VdbeMemSetZeroBlob(&pCtx->s, n);
1.398 +}
1.399 +void sqlite3_result_error_code(sqlite3_context *pCtx, int errCode){
1.400 + pCtx->isError = errCode;
1.401 +}
1.402 +
1.403 +/* Force an SQLITE_TOOBIG error. */
1.404 +void sqlite3_result_error_toobig(sqlite3_context *pCtx){
1.405 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.406 + pCtx->isError = SQLITE_TOOBIG;
1.407 + sqlite3VdbeMemSetStr(&pCtx->s, "string or blob too big", -1,
1.408 + SQLITE_UTF8, SQLITE_STATIC);
1.409 +}
1.410 +
1.411 +/* An SQLITE_NOMEM error. */
1.412 +void sqlite3_result_error_nomem(sqlite3_context *pCtx){
1.413 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.414 + sqlite3VdbeMemSetNull(&pCtx->s);
1.415 + pCtx->isError = SQLITE_NOMEM;
1.416 + pCtx->s.db->mallocFailed = 1;
1.417 +}
1.418 +
1.419 +/*
1.420 +** Execute the statement pStmt, either until a row of data is ready, the
1.421 +** statement is completely executed or an error occurs.
1.422 +**
1.423 +** This routine implements the bulk of the logic behind the sqlite_step()
1.424 +** API. The only thing omitted is the automatic recompile if a
1.425 +** schema change has occurred. That detail is handled by the
1.426 +** outer sqlite3_step() wrapper procedure.
1.427 +*/
1.428 +static int sqlite3Step(Vdbe *p){
1.429 + sqlite3 *db;
1.430 + int rc;
1.431 +
1.432 + assert(p);
1.433 + if( p->magic!=VDBE_MAGIC_RUN ){
1.434 + return SQLITE_MISUSE;
1.435 + }
1.436 +
1.437 + /* Assert that malloc() has not failed */
1.438 + db = p->db;
1.439 + assert( !db->mallocFailed );
1.440 +
1.441 + if( p->pc<=0 && p->expired ){
1.442 + if( p->rc==SQLITE_OK ){
1.443 + p->rc = SQLITE_SCHEMA;
1.444 + }
1.445 + rc = SQLITE_ERROR;
1.446 + goto end_of_step;
1.447 + }
1.448 + if( sqlite3SafetyOn(db) ){
1.449 + p->rc = SQLITE_MISUSE;
1.450 + return SQLITE_MISUSE;
1.451 + }
1.452 + if( p->pc<0 ){
1.453 + /* If there are no other statements currently running, then
1.454 + ** reset the interrupt flag. This prevents a call to sqlite3_interrupt
1.455 + ** from interrupting a statement that has not yet started.
1.456 + */
1.457 + if( db->activeVdbeCnt==0 ){
1.458 + db->u1.isInterrupted = 0;
1.459 + }
1.460 +
1.461 +#ifndef SQLITE_OMIT_TRACE
1.462 + if( db->xProfile && !db->init.busy ){
1.463 + double rNow;
1.464 + sqlite3OsCurrentTime(db->pVfs, &rNow);
1.465 + p->startTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0;
1.466 + }
1.467 +#endif
1.468 +
1.469 + db->activeVdbeCnt++;
1.470 + p->pc = 0;
1.471 + stmtLruRemove(p);
1.472 + }
1.473 +#ifndef SQLITE_OMIT_EXPLAIN
1.474 + if( p->explain ){
1.475 + rc = sqlite3VdbeList(p);
1.476 + }else
1.477 +#endif /* SQLITE_OMIT_EXPLAIN */
1.478 + {
1.479 + rc = sqlite3VdbeExec(p);
1.480 + }
1.481 +
1.482 + if( sqlite3SafetyOff(db) ){
1.483 + rc = SQLITE_MISUSE;
1.484 + }
1.485 +
1.486 +#ifndef SQLITE_OMIT_TRACE
1.487 + /* Invoke the profile callback if there is one
1.488 + */
1.489 + if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->nOp>0
1.490 + && p->aOp[0].opcode==OP_Trace && p->aOp[0].p4.z!=0 ){
1.491 + double rNow;
1.492 + u64 elapseTime;
1.493 +
1.494 + sqlite3OsCurrentTime(db->pVfs, &rNow);
1.495 + elapseTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0 - p->startTime;
1.496 + db->xProfile(db->pProfileArg, p->aOp[0].p4.z, elapseTime);
1.497 + }
1.498 +#endif
1.499 +
1.500 + db->errCode = rc;
1.501 + /*sqlite3Error(p->db, rc, 0);*/
1.502 + p->rc = sqlite3ApiExit(p->db, p->rc);
1.503 +end_of_step:
1.504 + assert( (rc&0xff)==rc );
1.505 + if( p->zSql && (rc&0xff)<SQLITE_ROW ){
1.506 + /* This behavior occurs if sqlite3_prepare_v2() was used to build
1.507 + ** the prepared statement. Return error codes directly */
1.508 + p->db->errCode = p->rc;
1.509 + /* sqlite3Error(p->db, p->rc, 0); */
1.510 + return p->rc;
1.511 + }else{
1.512 + /* This is for legacy sqlite3_prepare() builds and when the code
1.513 + ** is SQLITE_ROW or SQLITE_DONE */
1.514 + return rc;
1.515 + }
1.516 +}
1.517 +
1.518 +/*
1.519 +** This is the top-level implementation of sqlite3_step(). Call
1.520 +** sqlite3Step() to do most of the work. If a schema error occurs,
1.521 +** call sqlite3Reprepare() and try again.
1.522 +*/
1.523 +#ifdef SQLITE_OMIT_PARSER
1.524 +int sqlite3_step(sqlite3_stmt *pStmt){
1.525 + int rc = SQLITE_MISUSE;
1.526 + if( pStmt ){
1.527 + Vdbe *v;
1.528 + v = (Vdbe*)pStmt;
1.529 + sqlite3_mutex_enter(v->db->mutex);
1.530 + rc = sqlite3Step(v);
1.531 + sqlite3_mutex_leave(v->db->mutex);
1.532 + }
1.533 + return rc;
1.534 +}
1.535 +#else
1.536 +int sqlite3_step(sqlite3_stmt *pStmt){
1.537 + int rc = SQLITE_MISUSE;
1.538 + if( pStmt ){
1.539 + int cnt = 0;
1.540 + Vdbe *v = (Vdbe*)pStmt;
1.541 + sqlite3 *db = v->db;
1.542 + sqlite3_mutex_enter(db->mutex);
1.543 + while( (rc = sqlite3Step(v))==SQLITE_SCHEMA
1.544 + && cnt++ < 5
1.545 + && vdbeReprepare(v) ){
1.546 + sqlite3_reset(pStmt);
1.547 + v->expired = 0;
1.548 + }
1.549 + if( rc==SQLITE_SCHEMA && v->zSql && db->pErr ){
1.550 + /* This case occurs after failing to recompile an sql statement.
1.551 + ** The error message from the SQL compiler has already been loaded
1.552 + ** into the database handle. This block copies the error message
1.553 + ** from the database handle into the statement and sets the statement
1.554 + ** program counter to 0 to ensure that when the statement is
1.555 + ** finalized or reset the parser error message is available via
1.556 + ** sqlite3_errmsg() and sqlite3_errcode().
1.557 + */
1.558 + const char *zErr = (const char *)sqlite3_value_text(db->pErr);
1.559 + sqlite3DbFree(db, v->zErrMsg);
1.560 + if( !db->mallocFailed ){
1.561 + v->zErrMsg = sqlite3DbStrDup(db, zErr);
1.562 + } else {
1.563 + v->zErrMsg = 0;
1.564 + v->rc = SQLITE_NOMEM;
1.565 + }
1.566 + }
1.567 + rc = sqlite3ApiExit(db, rc);
1.568 + sqlite3_mutex_leave(db->mutex);
1.569 + }
1.570 + return rc;
1.571 +}
1.572 +#endif
1.573 +
1.574 +/*
1.575 +** Extract the user data from a sqlite3_context structure and return a
1.576 +** pointer to it.
1.577 +*/
1.578 +void *sqlite3_user_data(sqlite3_context *p){
1.579 + assert( p && p->pFunc );
1.580 + return p->pFunc->pUserData;
1.581 +}
1.582 +
1.583 +/*
1.584 +** Extract the user data from a sqlite3_context structure and return a
1.585 +** pointer to it.
1.586 +*/
1.587 +sqlite3 *sqlite3_context_db_handle(sqlite3_context *p){
1.588 + assert( p && p->pFunc );
1.589 + return p->s.db;
1.590 +}
1.591 +
1.592 +/*
1.593 +** The following is the implementation of an SQL function that always
1.594 +** fails with an error message stating that the function is used in the
1.595 +** wrong context. The sqlite3_overload_function() API might construct
1.596 +** SQL function that use this routine so that the functions will exist
1.597 +** for name resolution but are actually overloaded by the xFindFunction
1.598 +** method of virtual tables.
1.599 +*/
1.600 +void sqlite3InvalidFunction(
1.601 + sqlite3_context *context, /* The function calling context */
1.602 + int argc, /* Number of arguments to the function */
1.603 + sqlite3_value **argv /* Value of each argument */
1.604 +){
1.605 + const char *zName = context->pFunc->zName;
1.606 + char *zErr;
1.607 + zErr = sqlite3MPrintf(0,
1.608 + "unable to use function %s in the requested context", zName);
1.609 + sqlite3_result_error(context, zErr, -1);
1.610 + sqlite3_free(zErr);
1.611 +}
1.612 +
1.613 +/*
1.614 +** Allocate or return the aggregate context for a user function. A new
1.615 +** context is allocated on the first call. Subsequent calls return the
1.616 +** same context that was returned on prior calls.
1.617 +*/
1.618 +void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){
1.619 + Mem *pMem;
1.620 + assert( p && p->pFunc && p->pFunc->xStep );
1.621 + assert( sqlite3_mutex_held(p->s.db->mutex) );
1.622 + pMem = p->pMem;
1.623 + if( (pMem->flags & MEM_Agg)==0 ){
1.624 + if( nByte==0 ){
1.625 + sqlite3VdbeMemReleaseExternal(pMem);
1.626 + pMem->flags = MEM_Null;
1.627 + pMem->z = 0;
1.628 + }else{
1.629 + sqlite3VdbeMemGrow(pMem, nByte, 0);
1.630 + pMem->flags = MEM_Agg;
1.631 + pMem->u.pDef = p->pFunc;
1.632 + if( pMem->z ){
1.633 + memset(pMem->z, 0, nByte);
1.634 + }
1.635 + }
1.636 + }
1.637 + return (void*)pMem->z;
1.638 +}
1.639 +
1.640 +/*
1.641 +** Return the auxilary data pointer, if any, for the iArg'th argument to
1.642 +** the user-function defined by pCtx.
1.643 +*/
1.644 +void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){
1.645 + VdbeFunc *pVdbeFunc;
1.646 +
1.647 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.648 + pVdbeFunc = pCtx->pVdbeFunc;
1.649 + if( !pVdbeFunc || iArg>=pVdbeFunc->nAux || iArg<0 ){
1.650 + return 0;
1.651 + }
1.652 + return pVdbeFunc->apAux[iArg].pAux;
1.653 +}
1.654 +
1.655 +/*
1.656 +** Set the auxilary data pointer and delete function, for the iArg'th
1.657 +** argument to the user-function defined by pCtx. Any previous value is
1.658 +** deleted by calling the delete function specified when it was set.
1.659 +*/
1.660 +void sqlite3_set_auxdata(
1.661 + sqlite3_context *pCtx,
1.662 + int iArg,
1.663 + void *pAux,
1.664 + void (*xDelete)(void*)
1.665 +){
1.666 + struct AuxData *pAuxData;
1.667 + VdbeFunc *pVdbeFunc;
1.668 + if( iArg<0 ) goto failed;
1.669 +
1.670 + assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
1.671 + pVdbeFunc = pCtx->pVdbeFunc;
1.672 + if( !pVdbeFunc || pVdbeFunc->nAux<=iArg ){
1.673 + int nAux = (pVdbeFunc ? pVdbeFunc->nAux : 0);
1.674 + int nMalloc = sizeof(VdbeFunc) + sizeof(struct AuxData)*iArg;
1.675 + pVdbeFunc = sqlite3DbRealloc(pCtx->s.db, pVdbeFunc, nMalloc);
1.676 + if( !pVdbeFunc ){
1.677 + goto failed;
1.678 + }
1.679 + pCtx->pVdbeFunc = pVdbeFunc;
1.680 + memset(&pVdbeFunc->apAux[nAux], 0, sizeof(struct AuxData)*(iArg+1-nAux));
1.681 + pVdbeFunc->nAux = iArg+1;
1.682 + pVdbeFunc->pFunc = pCtx->pFunc;
1.683 + }
1.684 +
1.685 + pAuxData = &pVdbeFunc->apAux[iArg];
1.686 + if( pAuxData->pAux && pAuxData->xDelete ){
1.687 + pAuxData->xDelete(pAuxData->pAux);
1.688 + }
1.689 + pAuxData->pAux = pAux;
1.690 + pAuxData->xDelete = xDelete;
1.691 + return;
1.692 +
1.693 +failed:
1.694 + if( xDelete ){
1.695 + xDelete(pAux);
1.696 + }
1.697 +}
1.698 +
1.699 +/*
1.700 +** Return the number of times the Step function of a aggregate has been
1.701 +** called.
1.702 +**
1.703 +** This function is deprecated. Do not use it for new code. It is
1.704 +** provide only to avoid breaking legacy code. New aggregate function
1.705 +** implementations should keep their own counts within their aggregate
1.706 +** context.
1.707 +*/
1.708 +int sqlite3_aggregate_count(sqlite3_context *p){
1.709 + assert( p && p->pFunc && p->pFunc->xStep );
1.710 + return p->pMem->n;
1.711 +}
1.712 +
1.713 +/*
1.714 +** Return the number of columns in the result set for the statement pStmt.
1.715 +*/
1.716 +int sqlite3_column_count(sqlite3_stmt *pStmt){
1.717 + Vdbe *pVm = (Vdbe *)pStmt;
1.718 + return pVm ? pVm->nResColumn : 0;
1.719 +}
1.720 +
1.721 +/*
1.722 +** Return the number of values available from the current row of the
1.723 +** currently executing statement pStmt.
1.724 +*/
1.725 +int sqlite3_data_count(sqlite3_stmt *pStmt){
1.726 + Vdbe *pVm = (Vdbe *)pStmt;
1.727 + if( pVm==0 || pVm->pResultSet==0 ) return 0;
1.728 + return pVm->nResColumn;
1.729 +}
1.730 +
1.731 +
1.732 +/*
1.733 +** Check to see if column iCol of the given statement is valid. If
1.734 +** it is, return a pointer to the Mem for the value of that column.
1.735 +** If iCol is not valid, return a pointer to a Mem which has a value
1.736 +** of NULL.
1.737 +*/
1.738 +static Mem *columnMem(sqlite3_stmt *pStmt, int i){
1.739 + Vdbe *pVm;
1.740 + int vals;
1.741 + Mem *pOut;
1.742 +
1.743 + pVm = (Vdbe *)pStmt;
1.744 + if( pVm && pVm->pResultSet!=0 && i<pVm->nResColumn && i>=0 ){
1.745 + sqlite3_mutex_enter(pVm->db->mutex);
1.746 + vals = sqlite3_data_count(pStmt);
1.747 + pOut = &pVm->pResultSet[i];
1.748 + }else{
1.749 + static const Mem nullMem = {{0}, 0.0, 0, "", 0, MEM_Null, SQLITE_NULL, 0, 0, 0 };
1.750 + if( pVm->db ){
1.751 + sqlite3_mutex_enter(pVm->db->mutex);
1.752 + sqlite3Error(pVm->db, SQLITE_RANGE, 0);
1.753 + }
1.754 + pOut = (Mem*)&nullMem;
1.755 + }
1.756 + return pOut;
1.757 +}
1.758 +
1.759 +/*
1.760 +** This function is called after invoking an sqlite3_value_XXX function on a
1.761 +** column value (i.e. a value returned by evaluating an SQL expression in the
1.762 +** select list of a SELECT statement) that may cause a malloc() failure. If
1.763 +** malloc() has failed, the threads mallocFailed flag is cleared and the result
1.764 +** code of statement pStmt set to SQLITE_NOMEM.
1.765 +**
1.766 +** Specifically, this is called from within:
1.767 +**
1.768 +** sqlite3_column_int()
1.769 +** sqlite3_column_int64()
1.770 +** sqlite3_column_text()
1.771 +** sqlite3_column_text16()
1.772 +** sqlite3_column_real()
1.773 +** sqlite3_column_bytes()
1.774 +** sqlite3_column_bytes16()
1.775 +**
1.776 +** But not for sqlite3_column_blob(), which never calls malloc().
1.777 +*/
1.778 +static void columnMallocFailure(sqlite3_stmt *pStmt)
1.779 +{
1.780 + /* If malloc() failed during an encoding conversion within an
1.781 + ** sqlite3_column_XXX API, then set the return code of the statement to
1.782 + ** SQLITE_NOMEM. The next call to _step() (if any) will return SQLITE_ERROR
1.783 + ** and _finalize() will return NOMEM.
1.784 + */
1.785 + Vdbe *p = (Vdbe *)pStmt;
1.786 + if( p ){
1.787 + p->rc = sqlite3ApiExit(p->db, p->rc);
1.788 + sqlite3_mutex_leave(p->db->mutex);
1.789 + }
1.790 +}
1.791 +
1.792 +/**************************** sqlite3_column_ *******************************
1.793 +** The following routines are used to access elements of the current row
1.794 +** in the result set.
1.795 +*/
1.796 +const void *sqlite3_column_blob(sqlite3_stmt *pStmt, int i){
1.797 + const void *val;
1.798 + val = sqlite3_value_blob( columnMem(pStmt,i) );
1.799 + /* Even though there is no encoding conversion, value_blob() might
1.800 + ** need to call malloc() to expand the result of a zeroblob()
1.801 + ** expression.
1.802 + */
1.803 + columnMallocFailure(pStmt);
1.804 + return val;
1.805 +}
1.806 +int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
1.807 + int val = sqlite3_value_bytes( columnMem(pStmt,i) );
1.808 + columnMallocFailure(pStmt);
1.809 + return val;
1.810 +}
1.811 +int sqlite3_column_bytes16(sqlite3_stmt *pStmt, int i){
1.812 + int val = sqlite3_value_bytes16( columnMem(pStmt,i) );
1.813 + columnMallocFailure(pStmt);
1.814 + return val;
1.815 +}
1.816 +double sqlite3_column_double(sqlite3_stmt *pStmt, int i){
1.817 + double val = sqlite3_value_double( columnMem(pStmt,i) );
1.818 + columnMallocFailure(pStmt);
1.819 + return val;
1.820 +}
1.821 +int sqlite3_column_int(sqlite3_stmt *pStmt, int i){
1.822 + int val = sqlite3_value_int( columnMem(pStmt,i) );
1.823 + columnMallocFailure(pStmt);
1.824 + return val;
1.825 +}
1.826 +sqlite_int64 sqlite3_column_int64(sqlite3_stmt *pStmt, int i){
1.827 + sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) );
1.828 + columnMallocFailure(pStmt);
1.829 + return val;
1.830 +}
1.831 +const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
1.832 + const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) );
1.833 + columnMallocFailure(pStmt);
1.834 + return val;
1.835 +}
1.836 +sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){
1.837 + sqlite3_value *pOut = columnMem(pStmt, i);
1.838 + columnMallocFailure(pStmt);
1.839 + return pOut;
1.840 +}
1.841 +#ifndef SQLITE_OMIT_UTF16
1.842 +const void *sqlite3_column_text16(sqlite3_stmt *pStmt, int i){
1.843 + const void *val = sqlite3_value_text16( columnMem(pStmt,i) );
1.844 + columnMallocFailure(pStmt);
1.845 + return val;
1.846 +}
1.847 +#endif /* SQLITE_OMIT_UTF16 */
1.848 +int sqlite3_column_type(sqlite3_stmt *pStmt, int i){
1.849 + int iType = sqlite3_value_type( columnMem(pStmt,i) );
1.850 + columnMallocFailure(pStmt);
1.851 + return iType;
1.852 +}
1.853 +
1.854 +/* The following function is experimental and subject to change or
1.855 +** removal */
1.856 +/*int sqlite3_column_numeric_type(sqlite3_stmt *pStmt, int i){
1.857 +** return sqlite3_value_numeric_type( columnMem(pStmt,i) );
1.858 +**}
1.859 +*/
1.860 +
1.861 +/*
1.862 +** Convert the N-th element of pStmt->pColName[] into a string using
1.863 +** xFunc() then return that string. If N is out of range, return 0.
1.864 +**
1.865 +** There are up to 5 names for each column. useType determines which
1.866 +** name is returned. Here are the names:
1.867 +**
1.868 +** 0 The column name as it should be displayed for output
1.869 +** 1 The datatype name for the column
1.870 +** 2 The name of the database that the column derives from
1.871 +** 3 The name of the table that the column derives from
1.872 +** 4 The name of the table column that the result column derives from
1.873 +**
1.874 +** If the result is not a simple column reference (if it is an expression
1.875 +** or a constant) then useTypes 2, 3, and 4 return NULL.
1.876 +*/
1.877 +static const void *columnName(
1.878 + sqlite3_stmt *pStmt,
1.879 + int N,
1.880 + const void *(*xFunc)(Mem*),
1.881 + int useType
1.882 +){
1.883 + const void *ret = 0;
1.884 + Vdbe *p = (Vdbe *)pStmt;
1.885 + int n;
1.886 +
1.887 +
1.888 + if( p!=0 ){
1.889 + n = sqlite3_column_count(pStmt);
1.890 + if( N<n && N>=0 ){
1.891 + N += useType*n;
1.892 + sqlite3_mutex_enter(p->db->mutex);
1.893 + ret = xFunc(&p->aColName[N]);
1.894 +
1.895 + /* A malloc may have failed inside of the xFunc() call. If this
1.896 + ** is the case, clear the mallocFailed flag and return NULL.
1.897 + */
1.898 + if( p->db && p->db->mallocFailed ){
1.899 + p->db->mallocFailed = 0;
1.900 + ret = 0;
1.901 + }
1.902 + sqlite3_mutex_leave(p->db->mutex);
1.903 + }
1.904 + }
1.905 + return ret;
1.906 +}
1.907 +
1.908 +/*
1.909 +** Return the name of the Nth column of the result set returned by SQL
1.910 +** statement pStmt.
1.911 +*/
1.912 +const char *sqlite3_column_name(sqlite3_stmt *pStmt, int N){
1.913 + return columnName(
1.914 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_NAME);
1.915 +}
1.916 +#ifndef SQLITE_OMIT_UTF16
1.917 +const void *sqlite3_column_name16(sqlite3_stmt *pStmt, int N){
1.918 + return columnName(
1.919 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_NAME);
1.920 +}
1.921 +#endif
1.922 +
1.923 +/*
1.924 +** Constraint: If you have ENABLE_COLUMN_METADATA then you must
1.925 +** not define OMIT_DECLTYPE.
1.926 +*/
1.927 +#if defined(SQLITE_OMIT_DECLTYPE) && defined(SQLITE_ENABLE_COLUMN_METADATA)
1.928 +# error "Must not define both SQLITE_OMIT_DECLTYPE \
1.929 + and SQLITE_ENABLE_COLUMN_METADATA"
1.930 +#endif
1.931 +
1.932 +#ifndef SQLITE_OMIT_DECLTYPE
1.933 +/*
1.934 +** Return the column declaration type (if applicable) of the 'i'th column
1.935 +** of the result set of SQL statement pStmt.
1.936 +*/
1.937 +const char *sqlite3_column_decltype(sqlite3_stmt *pStmt, int N){
1.938 + return columnName(
1.939 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_DECLTYPE);
1.940 +}
1.941 +#ifndef SQLITE_OMIT_UTF16
1.942 +const void *sqlite3_column_decltype16(sqlite3_stmt *pStmt, int N){
1.943 + return columnName(
1.944 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_DECLTYPE);
1.945 +}
1.946 +#endif /* SQLITE_OMIT_UTF16 */
1.947 +#endif /* SQLITE_OMIT_DECLTYPE */
1.948 +
1.949 +#ifdef SQLITE_ENABLE_COLUMN_METADATA
1.950 +/*
1.951 +** Return the name of the database from which a result column derives.
1.952 +** NULL is returned if the result column is an expression or constant or
1.953 +** anything else which is not an unabiguous reference to a database column.
1.954 +*/
1.955 +const char *sqlite3_column_database_name(sqlite3_stmt *pStmt, int N){
1.956 + return columnName(
1.957 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_DATABASE);
1.958 +}
1.959 +#ifndef SQLITE_OMIT_UTF16
1.960 +const void *sqlite3_column_database_name16(sqlite3_stmt *pStmt, int N){
1.961 + return columnName(
1.962 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_DATABASE);
1.963 +}
1.964 +#endif /* SQLITE_OMIT_UTF16 */
1.965 +
1.966 +/*
1.967 +** Return the name of the table from which a result column derives.
1.968 +** NULL is returned if the result column is an expression or constant or
1.969 +** anything else which is not an unabiguous reference to a database column.
1.970 +*/
1.971 +const char *sqlite3_column_table_name(sqlite3_stmt *pStmt, int N){
1.972 + return columnName(
1.973 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_TABLE);
1.974 +}
1.975 +#ifndef SQLITE_OMIT_UTF16
1.976 +const void *sqlite3_column_table_name16(sqlite3_stmt *pStmt, int N){
1.977 + return columnName(
1.978 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_TABLE);
1.979 +}
1.980 +#endif /* SQLITE_OMIT_UTF16 */
1.981 +
1.982 +/*
1.983 +** Return the name of the table column from which a result column derives.
1.984 +** NULL is returned if the result column is an expression or constant or
1.985 +** anything else which is not an unabiguous reference to a database column.
1.986 +*/
1.987 +const char *sqlite3_column_origin_name(sqlite3_stmt *pStmt, int N){
1.988 + return columnName(
1.989 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_COLUMN);
1.990 +}
1.991 +#ifndef SQLITE_OMIT_UTF16
1.992 +const void *sqlite3_column_origin_name16(sqlite3_stmt *pStmt, int N){
1.993 + return columnName(
1.994 + pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_COLUMN);
1.995 +}
1.996 +#endif /* SQLITE_OMIT_UTF16 */
1.997 +#endif /* SQLITE_ENABLE_COLUMN_METADATA */
1.998 +
1.999 +
1.1000 +/******************************* sqlite3_bind_ ***************************
1.1001 +**
1.1002 +** Routines used to attach values to wildcards in a compiled SQL statement.
1.1003 +*/
1.1004 +/*
1.1005 +** Unbind the value bound to variable i in virtual machine p. This is the
1.1006 +** the same as binding a NULL value to the column. If the "i" parameter is
1.1007 +** out of range, then SQLITE_RANGE is returned. Othewise SQLITE_OK.
1.1008 +**
1.1009 +** The error code stored in database p->db is overwritten with the return
1.1010 +** value in any case.
1.1011 +*/
1.1012 +static int vdbeUnbind(Vdbe *p, int i){
1.1013 + Mem *pVar;
1.1014 + if( p==0 || p->magic!=VDBE_MAGIC_RUN || p->pc>=0 ){
1.1015 + if( p ) sqlite3Error(p->db, SQLITE_MISUSE, 0);
1.1016 + return SQLITE_MISUSE;
1.1017 + }
1.1018 + if( i<1 || i>p->nVar ){
1.1019 + sqlite3Error(p->db, SQLITE_RANGE, 0);
1.1020 + return SQLITE_RANGE;
1.1021 + }
1.1022 + i--;
1.1023 + pVar = &p->aVar[i];
1.1024 + sqlite3VdbeMemRelease(pVar);
1.1025 + pVar->flags = MEM_Null;
1.1026 + sqlite3Error(p->db, SQLITE_OK, 0);
1.1027 + return SQLITE_OK;
1.1028 +}
1.1029 +
1.1030 +/*
1.1031 +** Bind a text or BLOB value.
1.1032 +*/
1.1033 +static int bindText(
1.1034 + sqlite3_stmt *pStmt, /* The statement to bind against */
1.1035 + int i, /* Index of the parameter to bind */
1.1036 + const void *zData, /* Pointer to the data to be bound */
1.1037 + int nData, /* Number of bytes of data to be bound */
1.1038 + void (*xDel)(void*), /* Destructor for the data */
1.1039 + int encoding /* Encoding for the data */
1.1040 +){
1.1041 + Vdbe *p = (Vdbe *)pStmt;
1.1042 + Mem *pVar;
1.1043 + int rc;
1.1044 +
1.1045 + if( p==0 ){
1.1046 + return SQLITE_MISUSE;
1.1047 + }
1.1048 + sqlite3_mutex_enter(p->db->mutex);
1.1049 + rc = vdbeUnbind(p, i);
1.1050 + if( rc==SQLITE_OK && zData!=0 ){
1.1051 + pVar = &p->aVar[i-1];
1.1052 + rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel);
1.1053 + if( rc==SQLITE_OK && encoding!=0 ){
1.1054 + rc = sqlite3VdbeChangeEncoding(pVar, ENC(p->db));
1.1055 + }
1.1056 + sqlite3Error(p->db, rc, 0);
1.1057 + rc = sqlite3ApiExit(p->db, rc);
1.1058 + }
1.1059 + sqlite3_mutex_leave(p->db->mutex);
1.1060 + return rc;
1.1061 +}
1.1062 +
1.1063 +
1.1064 +/*
1.1065 +** Bind a blob value to an SQL statement variable.
1.1066 +*/
1.1067 +int sqlite3_bind_blob(
1.1068 + sqlite3_stmt *pStmt,
1.1069 + int i,
1.1070 + const void *zData,
1.1071 + int nData,
1.1072 + void (*xDel)(void*)
1.1073 +){
1.1074 + return bindText(pStmt, i, zData, nData, xDel, 0);
1.1075 +}
1.1076 +int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
1.1077 + int rc;
1.1078 + Vdbe *p = (Vdbe *)pStmt;
1.1079 + sqlite3_mutex_enter(p->db->mutex);
1.1080 + rc = vdbeUnbind(p, i);
1.1081 + if( rc==SQLITE_OK ){
1.1082 + sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
1.1083 + }
1.1084 + sqlite3_mutex_leave(p->db->mutex);
1.1085 + return rc;
1.1086 +}
1.1087 +int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
1.1088 + return sqlite3_bind_int64(p, i, (i64)iValue);
1.1089 +}
1.1090 +int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
1.1091 + int rc;
1.1092 + Vdbe *p = (Vdbe *)pStmt;
1.1093 + sqlite3_mutex_enter(p->db->mutex);
1.1094 + rc = vdbeUnbind(p, i);
1.1095 + if( rc==SQLITE_OK ){
1.1096 + sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
1.1097 + }
1.1098 + sqlite3_mutex_leave(p->db->mutex);
1.1099 + return rc;
1.1100 +}
1.1101 +int sqlite3_bind_null(sqlite3_stmt *pStmt, int i){
1.1102 + int rc;
1.1103 + Vdbe *p = (Vdbe*)pStmt;
1.1104 + sqlite3_mutex_enter(p->db->mutex);
1.1105 + rc = vdbeUnbind(p, i);
1.1106 + sqlite3_mutex_leave(p->db->mutex);
1.1107 + return rc;
1.1108 +}
1.1109 +int sqlite3_bind_text(
1.1110 + sqlite3_stmt *pStmt,
1.1111 + int i,
1.1112 + const char *zData,
1.1113 + int nData,
1.1114 + void (*xDel)(void*)
1.1115 +){
1.1116 + return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8);
1.1117 +}
1.1118 +#ifndef SQLITE_OMIT_UTF16
1.1119 +int sqlite3_bind_text16(
1.1120 + sqlite3_stmt *pStmt,
1.1121 + int i,
1.1122 + const void *zData,
1.1123 + int nData,
1.1124 + void (*xDel)(void*)
1.1125 +){
1.1126 + return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE);
1.1127 +}
1.1128 +#endif /* SQLITE_OMIT_UTF16 */
1.1129 +int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){
1.1130 + int rc;
1.1131 + Vdbe *p = (Vdbe *)pStmt;
1.1132 + sqlite3_mutex_enter(p->db->mutex);
1.1133 + rc = vdbeUnbind(p, i);
1.1134 + if( rc==SQLITE_OK ){
1.1135 + rc = sqlite3VdbeMemCopy(&p->aVar[i-1], pValue);
1.1136 + if( rc==SQLITE_OK ){
1.1137 + rc = sqlite3VdbeChangeEncoding(&p->aVar[i-1], ENC(p->db));
1.1138 + }
1.1139 + }
1.1140 + rc = sqlite3ApiExit(p->db, rc);
1.1141 + sqlite3_mutex_leave(p->db->mutex);
1.1142 + return rc;
1.1143 +}
1.1144 +int sqlite3_bind_zeroblob(sqlite3_stmt *pStmt, int i, int n){
1.1145 + int rc;
1.1146 + Vdbe *p = (Vdbe *)pStmt;
1.1147 + sqlite3_mutex_enter(p->db->mutex);
1.1148 + rc = vdbeUnbind(p, i);
1.1149 + if( rc==SQLITE_OK ){
1.1150 + sqlite3VdbeMemSetZeroBlob(&p->aVar[i-1], n);
1.1151 + }
1.1152 + sqlite3_mutex_leave(p->db->mutex);
1.1153 + return rc;
1.1154 +}
1.1155 +
1.1156 +/*
1.1157 +** Return the number of wildcards that can be potentially bound to.
1.1158 +** This routine is added to support DBD::SQLite.
1.1159 +*/
1.1160 +int sqlite3_bind_parameter_count(sqlite3_stmt *pStmt){
1.1161 + Vdbe *p = (Vdbe*)pStmt;
1.1162 + return p ? p->nVar : 0;
1.1163 +}
1.1164 +
1.1165 +/*
1.1166 +** Create a mapping from variable numbers to variable names
1.1167 +** in the Vdbe.azVar[] array, if such a mapping does not already
1.1168 +** exist.
1.1169 +*/
1.1170 +static void createVarMap(Vdbe *p){
1.1171 + if( !p->okVar ){
1.1172 + sqlite3_mutex_enter(p->db->mutex);
1.1173 + if( !p->okVar ){
1.1174 + int j;
1.1175 + Op *pOp;
1.1176 + for(j=0, pOp=p->aOp; j<p->nOp; j++, pOp++){
1.1177 + if( pOp->opcode==OP_Variable ){
1.1178 + assert( pOp->p1>0 && pOp->p1<=p->nVar );
1.1179 + p->azVar[pOp->p1-1] = pOp->p4.z;
1.1180 + }
1.1181 + }
1.1182 + p->okVar = 1;
1.1183 + }
1.1184 + sqlite3_mutex_leave(p->db->mutex);
1.1185 + }
1.1186 +}
1.1187 +
1.1188 +/*
1.1189 +** Return the name of a wildcard parameter. Return NULL if the index
1.1190 +** is out of range or if the wildcard is unnamed.
1.1191 +**
1.1192 +** The result is always UTF-8.
1.1193 +*/
1.1194 +const char *sqlite3_bind_parameter_name(sqlite3_stmt *pStmt, int i){
1.1195 + Vdbe *p = (Vdbe*)pStmt;
1.1196 + if( p==0 || i<1 || i>p->nVar ){
1.1197 + return 0;
1.1198 + }
1.1199 + createVarMap(p);
1.1200 + return p->azVar[i-1];
1.1201 +}
1.1202 +
1.1203 +/*
1.1204 +** Given a wildcard parameter name, return the index of the variable
1.1205 +** with that name. If there is no variable with the given name,
1.1206 +** return 0.
1.1207 +*/
1.1208 +int sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName){
1.1209 + Vdbe *p = (Vdbe*)pStmt;
1.1210 + int i;
1.1211 + if( p==0 ){
1.1212 + return 0;
1.1213 + }
1.1214 + createVarMap(p);
1.1215 + if( zName ){
1.1216 + for(i=0; i<p->nVar; i++){
1.1217 + const char *z = p->azVar[i];
1.1218 + if( z && strcmp(z,zName)==0 ){
1.1219 + return i+1;
1.1220 + }
1.1221 + }
1.1222 + }
1.1223 + return 0;
1.1224 +}
1.1225 +
1.1226 +/*
1.1227 +** Transfer all bindings from the first statement over to the second.
1.1228 +** If the two statements contain a different number of bindings, then
1.1229 +** an SQLITE_ERROR is returned.
1.1230 +*/
1.1231 +int sqlite3_transfer_bindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){
1.1232 + Vdbe *pFrom = (Vdbe*)pFromStmt;
1.1233 + Vdbe *pTo = (Vdbe*)pToStmt;
1.1234 + int i, rc = SQLITE_OK;
1.1235 + if( (pFrom->magic!=VDBE_MAGIC_RUN && pFrom->magic!=VDBE_MAGIC_HALT)
1.1236 + || (pTo->magic!=VDBE_MAGIC_RUN && pTo->magic!=VDBE_MAGIC_HALT)
1.1237 + || pTo->db!=pFrom->db ){
1.1238 + return SQLITE_MISUSE;
1.1239 + }
1.1240 + if( pFrom->nVar!=pTo->nVar ){
1.1241 + return SQLITE_ERROR;
1.1242 + }
1.1243 + sqlite3_mutex_enter(pTo->db->mutex);
1.1244 + for(i=0; rc==SQLITE_OK && i<pFrom->nVar; i++){
1.1245 + sqlite3VdbeMemMove(&pTo->aVar[i], &pFrom->aVar[i]);
1.1246 + }
1.1247 + sqlite3_mutex_leave(pTo->db->mutex);
1.1248 + assert( rc==SQLITE_OK || rc==SQLITE_NOMEM );
1.1249 + return rc;
1.1250 +}
1.1251 +
1.1252 +/*
1.1253 +** Return the sqlite3* database handle to which the prepared statement given
1.1254 +** in the argument belongs. This is the same database handle that was
1.1255 +** the first argument to the sqlite3_prepare() that was used to create
1.1256 +** the statement in the first place.
1.1257 +*/
1.1258 +sqlite3 *sqlite3_db_handle(sqlite3_stmt *pStmt){
1.1259 + return pStmt ? ((Vdbe*)pStmt)->db : 0;
1.1260 +}
1.1261 +
1.1262 +/*
1.1263 +** Return a pointer to the next prepared statement after pStmt associated
1.1264 +** with database connection pDb. If pStmt is NULL, return the first
1.1265 +** prepared statement for the database connection. Return NULL if there
1.1266 +** are no more.
1.1267 +*/
1.1268 +sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt){
1.1269 + sqlite3_stmt *pNext;
1.1270 + sqlite3_mutex_enter(pDb->mutex);
1.1271 + if( pStmt==0 ){
1.1272 + pNext = (sqlite3_stmt*)pDb->pVdbe;
1.1273 + }else{
1.1274 + pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext;
1.1275 + }
1.1276 + sqlite3_mutex_leave(pDb->mutex);
1.1277 + return pNext;
1.1278 +}