blob: 7d44fb158c05cd22e5989a33caa44328dc1122aa [file] [log] [blame]
drh4f26d6c2004-05-26 23:25:30 +00001/*
2** 2004 May 26
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
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.
10**
11*************************************************************************
12**
13** This file contains code use to implement APIs that are part of the
14** VDBE.
15*/
16#include "sqliteInt.h"
17#include "vdbeInt.h"
18
drhd89bd002005-01-22 03:03:54 +000019/*
20** Return TRUE (non-zero) of the statement supplied as an argument needs
21** to be recompiled. A statement needs to be recompiled whenever the
22** execution environment changes in a way that would alter the program
23** that sqlite3_prepare() generates. For example, if new functions or
24** collating sequences are registered or if an authorizer function is
25** added or changed.
drhd89bd002005-01-22 03:03:54 +000026*/
27int sqlite3_expired(sqlite3_stmt *pStmt){
28 Vdbe *p = (Vdbe*)pStmt;
29 return p==0 || p->expired;
30}
31
drhe30f4422007-08-21 16:15:55 +000032/*
33** The following routine destroys a virtual machine that is created by
34** the sqlite3_compile() routine. The integer returned is an SQLITE_
35** success/failure code that describes the result of executing the virtual
36** machine.
37**
38** This routine sets the error code and string returned by
39** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16().
40*/
41int sqlite3_finalize(sqlite3_stmt *pStmt){
42 int rc;
43 if( pStmt==0 ){
44 rc = SQLITE_OK;
45 }else{
46 Vdbe *v = (Vdbe*)pStmt;
drh86f8c192007-08-22 00:39:19 +000047 sqlite3_mutex *mutex = v->db->mutex;
48 sqlite3_mutex_enter(mutex);
drhe30f4422007-08-21 16:15:55 +000049 rc = sqlite3VdbeFinalize(v);
drh86f8c192007-08-22 00:39:19 +000050 sqlite3_mutex_leave(mutex);
drhe30f4422007-08-21 16:15:55 +000051 }
52 return rc;
53}
54
55/*
56** Terminate the current execution of an SQL statement and reset it
57** back to its starting state so that it can be reused. A success code from
58** the prior execution is returned.
59**
60** This routine sets the error code and string returned by
61** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16().
62*/
63int sqlite3_reset(sqlite3_stmt *pStmt){
64 int rc;
65 if( pStmt==0 ){
66 rc = SQLITE_OK;
67 }else{
68 Vdbe *v = (Vdbe*)pStmt;
69 sqlite3_mutex_enter(v->db->mutex);
70 rc = sqlite3VdbeReset(v);
71 sqlite3VdbeMakeReady(v, -1, 0, 0, 0);
72 assert( (rc & (v->db->errMask))==rc );
73 sqlite3_mutex_leave(v->db->mutex);
74 }
75 return rc;
76}
77
78/*
79** Set all the parameters in the compiled SQL statement to NULL.
80*/
81int sqlite3_clear_bindings(sqlite3_stmt *pStmt){
82 int i;
83 int rc = SQLITE_OK;
84 Vdbe *v = (Vdbe*)pStmt;
85 sqlite3_mutex_enter(v->db->mutex);
86 for(i=1; rc==SQLITE_OK && i<=sqlite3_bind_parameter_count(pStmt); i++){
87 rc = sqlite3_bind_null(pStmt, i);
88 }
89 sqlite3_mutex_leave(v->db->mutex);
90 return rc;
91}
92
93
drh4f26d6c2004-05-26 23:25:30 +000094/**************************** sqlite3_value_ *******************************
95** The following routines extract information from a Mem or sqlite3_value
96** structure.
97*/
98const void *sqlite3_value_blob(sqlite3_value *pVal){
99 Mem *p = (Mem*)pVal;
100 if( p->flags & (MEM_Blob|MEM_Str) ){
drhb21c8cd2007-08-21 19:33:56 +0000101 sqlite3VdbeMemExpandBlob(p);
drh1f0feef2007-05-15 13:27:07 +0000102 p->flags &= ~MEM_Str;
103 p->flags |= MEM_Blob;
drh4f26d6c2004-05-26 23:25:30 +0000104 return p->z;
105 }else{
106 return sqlite3_value_text(pVal);
107 }
108}
109int sqlite3_value_bytes(sqlite3_value *pVal){
drhb21c8cd2007-08-21 19:33:56 +0000110 return sqlite3ValueBytes(pVal, SQLITE_UTF8);
drh4f26d6c2004-05-26 23:25:30 +0000111}
112int sqlite3_value_bytes16(sqlite3_value *pVal){
drhb21c8cd2007-08-21 19:33:56 +0000113 return sqlite3ValueBytes(pVal, SQLITE_UTF16NATIVE);
drh4f26d6c2004-05-26 23:25:30 +0000114}
115double sqlite3_value_double(sqlite3_value *pVal){
drh6a6124e2004-06-27 01:56:33 +0000116 return sqlite3VdbeRealValue((Mem*)pVal);
drh4f26d6c2004-05-26 23:25:30 +0000117}
118int sqlite3_value_int(sqlite3_value *pVal){
drh6a6124e2004-06-27 01:56:33 +0000119 return sqlite3VdbeIntValue((Mem*)pVal);
drh4f26d6c2004-05-26 23:25:30 +0000120}
drhefad9992004-06-22 12:13:55 +0000121sqlite_int64 sqlite3_value_int64(sqlite3_value *pVal){
drh6a6124e2004-06-27 01:56:33 +0000122 return sqlite3VdbeIntValue((Mem*)pVal);
drh4f26d6c2004-05-26 23:25:30 +0000123}
124const unsigned char *sqlite3_value_text(sqlite3_value *pVal){
drhb21c8cd2007-08-21 19:33:56 +0000125 return (const unsigned char *)sqlite3ValueText(pVal, SQLITE_UTF8);
drh4f26d6c2004-05-26 23:25:30 +0000126}
drh6c626082004-11-14 21:56:29 +0000127#ifndef SQLITE_OMIT_UTF16
drh4f26d6c2004-05-26 23:25:30 +0000128const void *sqlite3_value_text16(sqlite3_value* pVal){
drhb21c8cd2007-08-21 19:33:56 +0000129 return sqlite3ValueText(pVal, SQLITE_UTF16NATIVE);
drh4f26d6c2004-05-26 23:25:30 +0000130}
danielk1977d8123362004-06-12 09:25:12 +0000131const void *sqlite3_value_text16be(sqlite3_value *pVal){
drhb21c8cd2007-08-21 19:33:56 +0000132 return sqlite3ValueText(pVal, SQLITE_UTF16BE);
danielk1977d8123362004-06-12 09:25:12 +0000133}
134const void *sqlite3_value_text16le(sqlite3_value *pVal){
drhb21c8cd2007-08-21 19:33:56 +0000135 return sqlite3ValueText(pVal, SQLITE_UTF16LE);
danielk1977d8123362004-06-12 09:25:12 +0000136}
drh6c626082004-11-14 21:56:29 +0000137#endif /* SQLITE_OMIT_UTF16 */
drh4f26d6c2004-05-26 23:25:30 +0000138int sqlite3_value_type(sqlite3_value* pVal){
drhf4479502004-05-27 03:12:53 +0000139 return pVal->type;
drh4f26d6c2004-05-26 23:25:30 +0000140}
141
142/**************************** sqlite3_result_ *******************************
143** The following routines are used by user-defined functions to specify
144** the function result.
145*/
146void sqlite3_result_blob(
147 sqlite3_context *pCtx,
148 const void *z,
149 int n,
danielk1977d8123362004-06-12 09:25:12 +0000150 void (*xDel)(void *)
drh4f26d6c2004-05-26 23:25:30 +0000151){
drh5708d2d2005-06-22 10:53:59 +0000152 assert( n>=0 );
drh32bc3f62007-08-21 20:25:39 +0000153 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb21c8cd2007-08-21 19:33:56 +0000154 sqlite3VdbeMemSetStr(&pCtx->s, z, n, 0, xDel);
drh4f26d6c2004-05-26 23:25:30 +0000155}
156void sqlite3_result_double(sqlite3_context *pCtx, double rVal){
drh32bc3f62007-08-21 20:25:39 +0000157 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drh4f26d6c2004-05-26 23:25:30 +0000158 sqlite3VdbeMemSetDouble(&pCtx->s, rVal);
159}
160void sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n){
drh32bc3f62007-08-21 20:25:39 +0000161 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drh4f26d6c2004-05-26 23:25:30 +0000162 pCtx->isError = 1;
drhb21c8cd2007-08-21 19:33:56 +0000163 sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF8, SQLITE_TRANSIENT);
drh4f26d6c2004-05-26 23:25:30 +0000164}
danielk1977a1686c92006-01-23 07:52:37 +0000165#ifndef SQLITE_OMIT_UTF16
drh4f26d6c2004-05-26 23:25:30 +0000166void sqlite3_result_error16(sqlite3_context *pCtx, const void *z, int n){
drh32bc3f62007-08-21 20:25:39 +0000167 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drh4f26d6c2004-05-26 23:25:30 +0000168 pCtx->isError = 1;
drhb21c8cd2007-08-21 19:33:56 +0000169 sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16NATIVE, SQLITE_TRANSIENT);
drh4f26d6c2004-05-26 23:25:30 +0000170}
danielk1977a1686c92006-01-23 07:52:37 +0000171#endif
drhf4479502004-05-27 03:12:53 +0000172void sqlite3_result_int(sqlite3_context *pCtx, int iVal){
drh32bc3f62007-08-21 20:25:39 +0000173 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drh4f26d6c2004-05-26 23:25:30 +0000174 sqlite3VdbeMemSetInt64(&pCtx->s, (i64)iVal);
175}
176void sqlite3_result_int64(sqlite3_context *pCtx, i64 iVal){
drh32bc3f62007-08-21 20:25:39 +0000177 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drh4f26d6c2004-05-26 23:25:30 +0000178 sqlite3VdbeMemSetInt64(&pCtx->s, iVal);
179}
180void sqlite3_result_null(sqlite3_context *pCtx){
drh32bc3f62007-08-21 20:25:39 +0000181 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhf4479502004-05-27 03:12:53 +0000182 sqlite3VdbeMemSetNull(&pCtx->s);
drh4f26d6c2004-05-26 23:25:30 +0000183}
184void sqlite3_result_text(
185 sqlite3_context *pCtx,
186 const char *z,
187 int n,
danielk1977d8123362004-06-12 09:25:12 +0000188 void (*xDel)(void *)
drh4f26d6c2004-05-26 23:25:30 +0000189){
drh32bc3f62007-08-21 20:25:39 +0000190 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb21c8cd2007-08-21 19:33:56 +0000191 sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF8, xDel);
drh4f26d6c2004-05-26 23:25:30 +0000192}
drh6c626082004-11-14 21:56:29 +0000193#ifndef SQLITE_OMIT_UTF16
drh4f26d6c2004-05-26 23:25:30 +0000194void sqlite3_result_text16(
195 sqlite3_context *pCtx,
196 const void *z,
197 int n,
danielk1977d8123362004-06-12 09:25:12 +0000198 void (*xDel)(void *)
drh4f26d6c2004-05-26 23:25:30 +0000199){
drh32bc3f62007-08-21 20:25:39 +0000200 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb21c8cd2007-08-21 19:33:56 +0000201 sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16NATIVE, xDel);
danielk1977d8123362004-06-12 09:25:12 +0000202}
203void sqlite3_result_text16be(
204 sqlite3_context *pCtx,
205 const void *z,
206 int n,
207 void (*xDel)(void *)
208){
drh32bc3f62007-08-21 20:25:39 +0000209 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb21c8cd2007-08-21 19:33:56 +0000210 sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16BE, xDel);
danielk1977d8123362004-06-12 09:25:12 +0000211}
212void sqlite3_result_text16le(
213 sqlite3_context *pCtx,
214 const void *z,
215 int n,
216 void (*xDel)(void *)
217){
drh32bc3f62007-08-21 20:25:39 +0000218 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb21c8cd2007-08-21 19:33:56 +0000219 sqlite3VdbeMemSetStr(&pCtx->s, z, n, SQLITE_UTF16LE, xDel);
drh4f26d6c2004-05-26 23:25:30 +0000220}
drh6c626082004-11-14 21:56:29 +0000221#endif /* SQLITE_OMIT_UTF16 */
drh4f26d6c2004-05-26 23:25:30 +0000222void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){
drh32bc3f62007-08-21 20:25:39 +0000223 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb21c8cd2007-08-21 19:33:56 +0000224 sqlite3VdbeMemCopy(&pCtx->s, pValue);
drh4f26d6c2004-05-26 23:25:30 +0000225}
drhb026e052007-05-02 01:34:31 +0000226void sqlite3_result_zeroblob(sqlite3_context *pCtx, int n){
drh32bc3f62007-08-21 20:25:39 +0000227 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhb026e052007-05-02 01:34:31 +0000228 sqlite3VdbeMemSetZeroBlob(&pCtx->s, n);
229}
drh4f26d6c2004-05-26 23:25:30 +0000230
drha0206bc2007-05-08 15:15:02 +0000231/* Force an SQLITE_TOOBIG error. */
232void sqlite3_result_error_toobig(sqlite3_context *pCtx){
drh32bc3f62007-08-21 20:25:39 +0000233 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drha0206bc2007-05-08 15:15:02 +0000234 sqlite3VdbeMemSetZeroBlob(&pCtx->s, SQLITE_MAX_LENGTH+1);
235}
236
danielk1977a1644fd2007-08-29 12:31:25 +0000237/* An SQLITE_NOMEM error. */
238void sqlite3_result_error_nomem(sqlite3_context *pCtx){
239 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
240 sqlite3VdbeMemSetNull(&pCtx->s);
241 pCtx->isError = 1;
242 pCtx->s.db->mallocFailed = 1;
243}
drh4f26d6c2004-05-26 23:25:30 +0000244
245/*
246** Execute the statement pStmt, either until a row of data is ready, the
247** statement is completely executed or an error occurs.
drhb900aaf2006-11-09 00:24:53 +0000248**
249** This routine implements the bulk of the logic behind the sqlite_step()
250** API. The only thing omitted is the automatic recompile if a
251** schema change has occurred. That detail is handled by the
252** outer sqlite3_step() wrapper procedure.
drh4f26d6c2004-05-26 23:25:30 +0000253*/
drhb900aaf2006-11-09 00:24:53 +0000254static int sqlite3Step(Vdbe *p){
drh9bb575f2004-09-06 17:24:11 +0000255 sqlite3 *db;
drh4f26d6c2004-05-26 23:25:30 +0000256 int rc;
257
danielk1977a185ddb2007-11-15 16:04:15 +0000258 assert(p);
259 if( p->magic!=VDBE_MAGIC_RUN ){
drhf1bfe9a2007-10-17 01:44:20 +0000260 return SQLITE_MISUSE;
261 }
262
danielk1977efaaf572006-01-16 11:29:19 +0000263 /* Assert that malloc() has not failed */
drh17435752007-08-16 04:30:38 +0000264 db = p->db;
265 assert( !db->mallocFailed );
danielk1977261919c2005-12-06 12:52:59 +0000266
drh91b48aa2004-06-30 11:14:18 +0000267 if( p->aborted ){
268 return SQLITE_ABORT;
269 }
danielk1977a21c6b62005-01-24 10:25:59 +0000270 if( p->pc<=0 && p->expired ){
271 if( p->rc==SQLITE_OK ){
272 p->rc = SQLITE_SCHEMA;
273 }
drhb900aaf2006-11-09 00:24:53 +0000274 rc = SQLITE_ERROR;
275 goto end_of_step;
danielk1977a21c6b62005-01-24 10:25:59 +0000276 }
drh4f26d6c2004-05-26 23:25:30 +0000277 if( sqlite3SafetyOn(db) ){
278 p->rc = SQLITE_MISUSE;
279 return SQLITE_MISUSE;
280 }
danielk19771d850a72004-05-31 08:26:49 +0000281 if( p->pc<0 ){
drh15ca1df2006-07-26 13:43:30 +0000282 /* If there are no other statements currently running, then
283 ** reset the interrupt flag. This prevents a call to sqlite3_interrupt
284 ** from interrupting a statement that has not yet started.
285 */
286 if( db->activeVdbeCnt==0 ){
287 db->u1.isInterrupted = 0;
288 }
289
drh19e2d372005-08-29 23:00:03 +0000290#ifndef SQLITE_OMIT_TRACE
drh19e2d372005-08-29 23:00:03 +0000291 if( db->xProfile && !db->init.busy ){
292 double rNow;
danielk1977b4b47412007-08-17 15:53:36 +0000293 sqlite3OsCurrentTime(db->pVfs, &rNow);
drh19e2d372005-08-29 23:00:03 +0000294 p->startTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0;
295 }
296#endif
drhc16a03b2004-09-15 13:38:10 +0000297
danielk19771d850a72004-05-31 08:26:49 +0000298 db->activeVdbeCnt++;
299 p->pc = 0;
300 }
drhb7f91642004-10-31 02:22:47 +0000301#ifndef SQLITE_OMIT_EXPLAIN
drh4f26d6c2004-05-26 23:25:30 +0000302 if( p->explain ){
303 rc = sqlite3VdbeList(p);
drhb7f91642004-10-31 02:22:47 +0000304 }else
305#endif /* SQLITE_OMIT_EXPLAIN */
306 {
drh4f26d6c2004-05-26 23:25:30 +0000307 rc = sqlite3VdbeExec(p);
308 }
309
310 if( sqlite3SafetyOff(db) ){
311 rc = SQLITE_MISUSE;
312 }
313
drh19e2d372005-08-29 23:00:03 +0000314#ifndef SQLITE_OMIT_TRACE
315 /* Invoke the profile callback if there is one
316 */
drh949f9cd2008-01-12 21:35:57 +0000317 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->nOp>0
318 && p->aOp[0].opcode==OP_Trace && p->aOp[0].p4.z!=0 ){
drh19e2d372005-08-29 23:00:03 +0000319 double rNow;
320 u64 elapseTime;
321
danielk1977b4b47412007-08-17 15:53:36 +0000322 sqlite3OsCurrentTime(db->pVfs, &rNow);
drh19e2d372005-08-29 23:00:03 +0000323 elapseTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0 - p->startTime;
drh949f9cd2008-01-12 21:35:57 +0000324 db->xProfile(db->pProfileArg, p->aOp[0].p4.z, elapseTime);
drh19e2d372005-08-29 23:00:03 +0000325 }
326#endif
327
danielk197797a227c2006-01-20 16:32:04 +0000328 sqlite3Error(p->db, rc, 0);
danielk197776e8d1a2006-01-18 18:22:43 +0000329 p->rc = sqlite3ApiExit(p->db, p->rc);
drhb900aaf2006-11-09 00:24:53 +0000330end_of_step:
drh4ac285a2006-09-15 07:28:50 +0000331 assert( (rc&0xff)==rc );
drhb900aaf2006-11-09 00:24:53 +0000332 if( p->zSql && (rc&0xff)<SQLITE_ROW ){
333 /* This behavior occurs if sqlite3_prepare_v2() was used to build
334 ** the prepared statement. Return error codes directly */
danielk1977612642d2007-07-12 13:18:05 +0000335 sqlite3Error(p->db, p->rc, 0);
drhb900aaf2006-11-09 00:24:53 +0000336 return p->rc;
337 }else{
338 /* This is for legacy sqlite3_prepare() builds and when the code
339 ** is SQLITE_ROW or SQLITE_DONE */
340 return rc;
341 }
342}
343
344/*
345** This is the top-level implementation of sqlite3_step(). Call
346** sqlite3Step() to do most of the work. If a schema error occurs,
347** call sqlite3Reprepare() and try again.
348*/
349#ifdef SQLITE_OMIT_PARSER
350int sqlite3_step(sqlite3_stmt *pStmt){
danielk1977a185ddb2007-11-15 16:04:15 +0000351 int rc = SQLITE_MISUSE;
352 if( pStmt ){
353 Vdbe *v;
354 v = (Vdbe*)pStmt;
355 sqlite3_mutex_enter(v->db->mutex);
356 rc = sqlite3Step(v);
357 sqlite3_mutex_leave(v->db->mutex);
358 }
drhb21c8cd2007-08-21 19:33:56 +0000359 return rc;
drhb900aaf2006-11-09 00:24:53 +0000360}
361#else
362int sqlite3_step(sqlite3_stmt *pStmt){
danielk1977a185ddb2007-11-15 16:04:15 +0000363 int rc = SQLITE_MISUSE;
364 if( pStmt ){
365 int cnt = 0;
366 Vdbe *v = (Vdbe*)pStmt;
367 sqlite3 *db = v->db;
368 sqlite3_mutex_enter(db->mutex);
369 while( (rc = sqlite3Step(v))==SQLITE_SCHEMA
370 && cnt++ < 5
371 && sqlite3Reprepare(v) ){
372 sqlite3_reset(pStmt);
373 v->expired = 0;
danielk19778e556522007-11-13 10:30:24 +0000374 }
danielk1977a185ddb2007-11-15 16:04:15 +0000375 if( rc==SQLITE_SCHEMA && v->zSql && db->pErr ){
376 /* This case occurs after failing to recompile an sql statement.
377 ** The error message from the SQL compiler has already been loaded
378 ** into the database handle. This block copies the error message
379 ** from the database handle into the statement and sets the statement
380 ** program counter to 0 to ensure that when the statement is
381 ** finalized or reset the parser error message is available via
382 ** sqlite3_errmsg() and sqlite3_errcode().
383 */
384 const char *zErr = (const char *)sqlite3_value_text(db->pErr);
385 sqlite3_free(v->zErrMsg);
386 if( !db->mallocFailed ){
387 v->zErrMsg = sqlite3DbStrDup(db, zErr);
388 } else {
389 v->zErrMsg = 0;
390 v->rc = SQLITE_NOMEM;
391 }
392 }
393 rc = sqlite3ApiExit(db, rc);
394 sqlite3_mutex_leave(db->mutex);
danielk19778e556522007-11-13 10:30:24 +0000395 }
danielk197776e8d1a2006-01-18 18:22:43 +0000396 return rc;
drh4f26d6c2004-05-26 23:25:30 +0000397}
drhb900aaf2006-11-09 00:24:53 +0000398#endif
drh4f26d6c2004-05-26 23:25:30 +0000399
400/*
drheb2e1762004-05-27 01:53:56 +0000401** Extract the user data from a sqlite3_context structure and return a
402** pointer to it.
403*/
404void *sqlite3_user_data(sqlite3_context *p){
405 assert( p && p->pFunc );
406 return p->pFunc->pUserData;
407}
408
409/*
drhb7481e72006-09-16 21:45:14 +0000410** The following is the implementation of an SQL function that always
411** fails with an error message stating that the function is used in the
412** wrong context. The sqlite3_overload_function() API might construct
413** SQL function that use this routine so that the functions will exist
414** for name resolution but are actually overloaded by the xFindFunction
415** method of virtual tables.
416*/
417void sqlite3InvalidFunction(
418 sqlite3_context *context, /* The function calling context */
419 int argc, /* Number of arguments to the function */
420 sqlite3_value **argv /* Value of each argument */
421){
422 const char *zName = context->pFunc->zName;
423 char *zErr;
danielk19771e536952007-08-16 10:09:01 +0000424 zErr = sqlite3MPrintf(0,
drhb7481e72006-09-16 21:45:14 +0000425 "unable to use function %s in the requested context", zName);
426 sqlite3_result_error(context, zErr, -1);
danielk19771e536952007-08-16 10:09:01 +0000427 sqlite3_free(zErr);
drhb7481e72006-09-16 21:45:14 +0000428}
429
430/*
drheb2e1762004-05-27 01:53:56 +0000431** Allocate or return the aggregate context for a user function. A new
432** context is allocated on the first call. Subsequent calls return the
433** same context that was returned on prior calls.
drheb2e1762004-05-27 01:53:56 +0000434*/
435void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){
drhb21c8cd2007-08-21 19:33:56 +0000436 Mem *pMem;
drh825c6622005-09-08 19:01:05 +0000437 assert( p && p->pFunc && p->pFunc->xStep );
drhb21c8cd2007-08-21 19:33:56 +0000438 assert( sqlite3_mutex_held(p->s.db->mutex) );
439 pMem = p->pMem;
drha10a34b2005-09-07 22:09:48 +0000440 if( (pMem->flags & MEM_Agg)==0 ){
441 if( nByte==0 ){
442 assert( pMem->flags==MEM_Null );
443 pMem->z = 0;
drheb2e1762004-05-27 01:53:56 +0000444 }else{
drha10a34b2005-09-07 22:09:48 +0000445 pMem->flags = MEM_Agg;
danielk19771e536952007-08-16 10:09:01 +0000446 pMem->xDel = sqlite3_free;
drh3c024d62007-03-30 11:23:45 +0000447 pMem->u.pDef = p->pFunc;
danielk1977d949fd32007-11-05 12:46:04 +0000448 pMem->z = sqlite3DbMallocZero(p->s.db, nByte);
drheb2e1762004-05-27 01:53:56 +0000449 }
450 }
drhabfcea22005-09-06 20:36:48 +0000451 return (void*)pMem->z;
drheb2e1762004-05-27 01:53:56 +0000452}
453
454/*
danielk1977682f68b2004-06-05 10:22:17 +0000455** Return the auxilary data pointer, if any, for the iArg'th argument to
456** the user-function defined by pCtx.
457*/
458void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){
drhb21c8cd2007-08-21 19:33:56 +0000459 VdbeFunc *pVdbeFunc;
460
461 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
462 pVdbeFunc = pCtx->pVdbeFunc;
danielk1977682f68b2004-06-05 10:22:17 +0000463 if( !pVdbeFunc || iArg>=pVdbeFunc->nAux || iArg<0 ){
464 return 0;
465 }
drhf92c7ff2004-06-19 15:40:23 +0000466 return pVdbeFunc->apAux[iArg].pAux;
danielk1977682f68b2004-06-05 10:22:17 +0000467}
468
469/*
470** Set the auxilary data pointer and delete function, for the iArg'th
471** argument to the user-function defined by pCtx. Any previous value is
472** deleted by calling the delete function specified when it was set.
473*/
474void sqlite3_set_auxdata(
475 sqlite3_context *pCtx,
476 int iArg,
477 void *pAux,
478 void (*xDelete)(void*)
479){
480 struct AuxData *pAuxData;
drhf92c7ff2004-06-19 15:40:23 +0000481 VdbeFunc *pVdbeFunc;
danielk1977e0fc5262007-07-26 06:50:05 +0000482 if( iArg<0 ) goto failed;
danielk1977682f68b2004-06-05 10:22:17 +0000483
drhb21c8cd2007-08-21 19:33:56 +0000484 assert( sqlite3_mutex_held(pCtx->s.db->mutex) );
drhf92c7ff2004-06-19 15:40:23 +0000485 pVdbeFunc = pCtx->pVdbeFunc;
486 if( !pVdbeFunc || pVdbeFunc->nAux<=iArg ){
danielk197731dad9d2007-08-16 11:36:15 +0000487 int nAux = (pVdbeFunc ? pVdbeFunc->nAux : 0);
drhf92c7ff2004-06-19 15:40:23 +0000488 int nMalloc = sizeof(VdbeFunc) + sizeof(struct AuxData)*iArg;
danielk197726783a52007-08-29 14:06:22 +0000489 pVdbeFunc = sqlite3DbRealloc(pCtx->s.db, pVdbeFunc, nMalloc);
drh17435752007-08-16 04:30:38 +0000490 if( !pVdbeFunc ){
drh17435752007-08-16 04:30:38 +0000491 goto failed;
492 }
drh53f733c2005-09-16 02:38:09 +0000493 pCtx->pVdbeFunc = pVdbeFunc;
danielk197731dad9d2007-08-16 11:36:15 +0000494 memset(&pVdbeFunc->apAux[nAux], 0, sizeof(struct AuxData)*(iArg+1-nAux));
drh998da3a2004-06-19 15:22:56 +0000495 pVdbeFunc->nAux = iArg+1;
496 pVdbeFunc->pFunc = pCtx->pFunc;
danielk1977682f68b2004-06-05 10:22:17 +0000497 }
498
drhf92c7ff2004-06-19 15:40:23 +0000499 pAuxData = &pVdbeFunc->apAux[iArg];
danielk1977682f68b2004-06-05 10:22:17 +0000500 if( pAuxData->pAux && pAuxData->xDelete ){
501 pAuxData->xDelete(pAuxData->pAux);
502 }
503 pAuxData->pAux = pAux;
504 pAuxData->xDelete = xDelete;
danielk1977e0fc5262007-07-26 06:50:05 +0000505 return;
506
507failed:
508 if( xDelete ){
509 xDelete(pAux);
510 }
danielk1977682f68b2004-06-05 10:22:17 +0000511}
512
513/*
drheb2e1762004-05-27 01:53:56 +0000514** Return the number of times the Step function of a aggregate has been
515** called.
516**
drhcf85a512006-02-09 18:35:29 +0000517** This function is deprecated. Do not use it for new code. It is
518** provide only to avoid breaking legacy code. New aggregate function
519** implementations should keep their own counts within their aggregate
520** context.
drheb2e1762004-05-27 01:53:56 +0000521*/
522int sqlite3_aggregate_count(sqlite3_context *p){
523 assert( p && p->pFunc && p->pFunc->xStep );
drhabfcea22005-09-06 20:36:48 +0000524 return p->pMem->n;
drheb2e1762004-05-27 01:53:56 +0000525}
526
527/*
drh4f26d6c2004-05-26 23:25:30 +0000528** Return the number of columns in the result set for the statement pStmt.
529*/
530int sqlite3_column_count(sqlite3_stmt *pStmt){
531 Vdbe *pVm = (Vdbe *)pStmt;
drh1bcdb0c2004-08-28 14:49:46 +0000532 return pVm ? pVm->nResColumn : 0;
drh4f26d6c2004-05-26 23:25:30 +0000533}
534
535/*
536** Return the number of values available from the current row of the
537** currently executing statement pStmt.
538*/
539int sqlite3_data_count(sqlite3_stmt *pStmt){
540 Vdbe *pVm = (Vdbe *)pStmt;
drhd4e70eb2008-01-02 00:34:36 +0000541 if( pVm==0 || pVm->pResultSet==0 ) return 0;
drh4f26d6c2004-05-26 23:25:30 +0000542 return pVm->nResColumn;
543}
544
545
546/*
547** Check to see if column iCol of the given statement is valid. If
548** it is, return a pointer to the Mem for the value of that column.
549** If iCol is not valid, return a pointer to a Mem which has a value
550** of NULL.
551*/
552static Mem *columnMem(sqlite3_stmt *pStmt, int i){
drh32bc3f62007-08-21 20:25:39 +0000553 Vdbe *pVm;
554 int vals;
555 Mem *pOut;
556
557 pVm = (Vdbe *)pStmt;
drhd4e70eb2008-01-02 00:34:36 +0000558 if( pVm && pVm->pResultSet!=0 && i<pVm->nResColumn && i>=0 ){
drh32bc3f62007-08-21 20:25:39 +0000559 sqlite3_mutex_enter(pVm->db->mutex);
560 vals = sqlite3_data_count(pStmt);
drhd4e70eb2008-01-02 00:34:36 +0000561 pOut = &pVm->pResultSet[i];
drh32bc3f62007-08-21 20:25:39 +0000562 }else{
drhb21c8cd2007-08-21 19:33:56 +0000563 static const Mem nullMem = {{0}, 0.0, 0, "", 0, MEM_Null, SQLITE_NULL };
drh27641702007-08-22 02:56:42 +0000564 if( pVm->db ){
565 sqlite3_mutex_enter(pVm->db->mutex);
566 sqlite3Error(pVm->db, SQLITE_RANGE, 0);
567 }
drh32bc3f62007-08-21 20:25:39 +0000568 pOut = (Mem*)&nullMem;
drh4f26d6c2004-05-26 23:25:30 +0000569 }
drh32bc3f62007-08-21 20:25:39 +0000570 return pOut;
drh4f26d6c2004-05-26 23:25:30 +0000571}
572
danielk19772e588c72005-12-09 14:25:08 +0000573/*
574** This function is called after invoking an sqlite3_value_XXX function on a
575** column value (i.e. a value returned by evaluating an SQL expression in the
576** select list of a SELECT statement) that may cause a malloc() failure. If
577** malloc() has failed, the threads mallocFailed flag is cleared and the result
578** code of statement pStmt set to SQLITE_NOMEM.
579**
drh32bc3f62007-08-21 20:25:39 +0000580** Specifically, this is called from within:
danielk19772e588c72005-12-09 14:25:08 +0000581**
582** sqlite3_column_int()
583** sqlite3_column_int64()
584** sqlite3_column_text()
585** sqlite3_column_text16()
586** sqlite3_column_real()
587** sqlite3_column_bytes()
588** sqlite3_column_bytes16()
589**
590** But not for sqlite3_column_blob(), which never calls malloc().
591*/
592static void columnMallocFailure(sqlite3_stmt *pStmt)
593{
594 /* If malloc() failed during an encoding conversion within an
595 ** sqlite3_column_XXX API, then set the return code of the statement to
596 ** SQLITE_NOMEM. The next call to _step() (if any) will return SQLITE_ERROR
597 ** and _finalize() will return NOMEM.
598 */
danielk197754f01982006-01-18 15:25:17 +0000599 Vdbe *p = (Vdbe *)pStmt;
drh32bc3f62007-08-21 20:25:39 +0000600 if( p ){
601 p->rc = sqlite3ApiExit(p->db, p->rc);
602 sqlite3_mutex_leave(p->db->mutex);
603 }
danielk19772e588c72005-12-09 14:25:08 +0000604}
605
drh4f26d6c2004-05-26 23:25:30 +0000606/**************************** sqlite3_column_ *******************************
607** The following routines are used to access elements of the current row
608** in the result set.
609*/
danielk1977c572ef72004-05-27 09:28:41 +0000610const void *sqlite3_column_blob(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000611 const void *val;
danielk19772e588c72005-12-09 14:25:08 +0000612 val = sqlite3_value_blob( columnMem(pStmt,i) );
danielk1977c9cf9012007-05-30 10:36:47 +0000613 /* Even though there is no encoding conversion, value_blob() might
614 ** need to call malloc() to expand the result of a zeroblob()
615 ** expression.
616 */
617 columnMallocFailure(pStmt);
danielk19772e588c72005-12-09 14:25:08 +0000618 return val;
danielk1977c572ef72004-05-27 09:28:41 +0000619}
drh4f26d6c2004-05-26 23:25:30 +0000620int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000621 int val = sqlite3_value_bytes( columnMem(pStmt,i) );
622 columnMallocFailure(pStmt);
623 return val;
drh4f26d6c2004-05-26 23:25:30 +0000624}
625int sqlite3_column_bytes16(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000626 int val = sqlite3_value_bytes16( columnMem(pStmt,i) );
627 columnMallocFailure(pStmt);
628 return val;
drh4f26d6c2004-05-26 23:25:30 +0000629}
630double sqlite3_column_double(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000631 double val = sqlite3_value_double( columnMem(pStmt,i) );
632 columnMallocFailure(pStmt);
633 return val;
drh4f26d6c2004-05-26 23:25:30 +0000634}
635int sqlite3_column_int(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000636 int val = sqlite3_value_int( columnMem(pStmt,i) );
637 columnMallocFailure(pStmt);
638 return val;
drh4f26d6c2004-05-26 23:25:30 +0000639}
drhefad9992004-06-22 12:13:55 +0000640sqlite_int64 sqlite3_column_int64(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000641 sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) );
642 columnMallocFailure(pStmt);
643 return val;
drh4f26d6c2004-05-26 23:25:30 +0000644}
645const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000646 const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) );
647 columnMallocFailure(pStmt);
648 return val;
drh4f26d6c2004-05-26 23:25:30 +0000649}
drhd1e47332005-06-26 17:55:33 +0000650sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){
drh32bc3f62007-08-21 20:25:39 +0000651 sqlite3_value *pOut = columnMem(pStmt, i);
652 columnMallocFailure(pStmt);
653 return pOut;
drhd1e47332005-06-26 17:55:33 +0000654}
drh6c626082004-11-14 21:56:29 +0000655#ifndef SQLITE_OMIT_UTF16
drh4f26d6c2004-05-26 23:25:30 +0000656const void *sqlite3_column_text16(sqlite3_stmt *pStmt, int i){
danielk19772e588c72005-12-09 14:25:08 +0000657 const void *val = sqlite3_value_text16( columnMem(pStmt,i) );
658 columnMallocFailure(pStmt);
659 return val;
drh4f26d6c2004-05-26 23:25:30 +0000660}
drh6c626082004-11-14 21:56:29 +0000661#endif /* SQLITE_OMIT_UTF16 */
drh4f26d6c2004-05-26 23:25:30 +0000662int sqlite3_column_type(sqlite3_stmt *pStmt, int i){
drh32bc3f62007-08-21 20:25:39 +0000663 int iType = sqlite3_value_type( columnMem(pStmt,i) );
664 columnMallocFailure(pStmt);
665 return iType;
drh4f26d6c2004-05-26 23:25:30 +0000666}
667
drh29d72102006-02-09 22:13:41 +0000668/* The following function is experimental and subject to change or
669** removal */
670/*int sqlite3_column_numeric_type(sqlite3_stmt *pStmt, int i){
671** return sqlite3_value_numeric_type( columnMem(pStmt,i) );
672**}
673*/
674
drh5e2517e2004-09-24 23:59:12 +0000675/*
676** Convert the N-th element of pStmt->pColName[] into a string using
677** xFunc() then return that string. If N is out of range, return 0.
drhe590fbd2005-05-20 19:36:01 +0000678**
679** There are up to 5 names for each column. useType determines which
680** name is returned. Here are the names:
681**
682** 0 The column name as it should be displayed for output
683** 1 The datatype name for the column
684** 2 The name of the database that the column derives from
685** 3 The name of the table that the column derives from
686** 4 The name of the table column that the result column derives from
687**
688** If the result is not a simple column reference (if it is an expression
689** or a constant) then useTypes 2, 3, and 4 return NULL.
drh5e2517e2004-09-24 23:59:12 +0000690*/
691static const void *columnName(
692 sqlite3_stmt *pStmt,
693 int N,
694 const void *(*xFunc)(Mem*),
695 int useType
696){
drh32bc3f62007-08-21 20:25:39 +0000697 const void *ret = 0;
drh5e2517e2004-09-24 23:59:12 +0000698 Vdbe *p = (Vdbe *)pStmt;
drh32bc3f62007-08-21 20:25:39 +0000699 int n;
700
drh5e2517e2004-09-24 23:59:12 +0000701
drh32bc3f62007-08-21 20:25:39 +0000702 if( p!=0 ){
703 n = sqlite3_column_count(pStmt);
704 if( N<n && N>=0 ){
705 N += useType*n;
drh153c62c2007-08-24 03:51:33 +0000706 sqlite3_mutex_enter(p->db->mutex);
drh32bc3f62007-08-21 20:25:39 +0000707 ret = xFunc(&p->aColName[N]);
708
drh32bc3f62007-08-21 20:25:39 +0000709 /* A malloc may have failed inside of the xFunc() call. If this
710 ** is the case, clear the mallocFailed flag and return NULL.
711 */
712 if( p->db && p->db->mallocFailed ){
713 p->db->mallocFailed = 0;
714 ret = 0;
715 }
drh153c62c2007-08-24 03:51:33 +0000716 sqlite3_mutex_leave(p->db->mutex);
drh32bc3f62007-08-21 20:25:39 +0000717 }
drh5e2517e2004-09-24 23:59:12 +0000718 }
danielk197700fd9572005-12-07 06:27:43 +0000719 return ret;
drh5e2517e2004-09-24 23:59:12 +0000720}
721
drh4f26d6c2004-05-26 23:25:30 +0000722/*
723** Return the name of the Nth column of the result set returned by SQL
724** statement pStmt.
725*/
726const char *sqlite3_column_name(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000727 return columnName(
728 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_NAME);
drh4f26d6c2004-05-26 23:25:30 +0000729}
drhe590fbd2005-05-20 19:36:01 +0000730#ifndef SQLITE_OMIT_UTF16
731const void *sqlite3_column_name16(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000732 return columnName(
733 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_NAME);
drhe590fbd2005-05-20 19:36:01 +0000734}
735#endif
drh4f26d6c2004-05-26 23:25:30 +0000736
737/*
drh6c626082004-11-14 21:56:29 +0000738** Return the column declaration type (if applicable) of the 'i'th column
drhe590fbd2005-05-20 19:36:01 +0000739** of the result set of SQL statement pStmt.
drh6c626082004-11-14 21:56:29 +0000740*/
741const char *sqlite3_column_decltype(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000742 return columnName(
743 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_DECLTYPE);
drh6c626082004-11-14 21:56:29 +0000744}
drh6c626082004-11-14 21:56:29 +0000745#ifndef SQLITE_OMIT_UTF16
danielk197776d505b2004-05-28 13:13:02 +0000746const void *sqlite3_column_decltype16(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000747 return columnName(
748 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_DECLTYPE);
drh4f26d6c2004-05-26 23:25:30 +0000749}
drh6c626082004-11-14 21:56:29 +0000750#endif /* SQLITE_OMIT_UTF16 */
drh4f26d6c2004-05-26 23:25:30 +0000751
danielk19774b1ae992006-02-10 03:06:10 +0000752#ifdef SQLITE_ENABLE_COLUMN_METADATA
drhe590fbd2005-05-20 19:36:01 +0000753/*
754** Return the name of the database from which a result column derives.
755** NULL is returned if the result column is an expression or constant or
756** anything else which is not an unabiguous reference to a database column.
757*/
758const char *sqlite3_column_database_name(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000759 return columnName(
760 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_DATABASE);
drhe590fbd2005-05-20 19:36:01 +0000761}
762#ifndef SQLITE_OMIT_UTF16
763const void *sqlite3_column_database_name16(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000764 return columnName(
765 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_DATABASE);
drhe590fbd2005-05-20 19:36:01 +0000766}
767#endif /* SQLITE_OMIT_UTF16 */
768
769/*
770** Return the name of the table from which a result column derives.
771** NULL is returned if the result column is an expression or constant or
772** anything else which is not an unabiguous reference to a database column.
773*/
774const char *sqlite3_column_table_name(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000775 return columnName(
776 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_TABLE);
drhe590fbd2005-05-20 19:36:01 +0000777}
778#ifndef SQLITE_OMIT_UTF16
779const void *sqlite3_column_table_name16(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000780 return columnName(
781 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_TABLE);
drhe590fbd2005-05-20 19:36:01 +0000782}
783#endif /* SQLITE_OMIT_UTF16 */
784
785/*
786** Return the name of the table column from which a result column derives.
787** NULL is returned if the result column is an expression or constant or
788** anything else which is not an unabiguous reference to a database column.
789*/
790const char *sqlite3_column_origin_name(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000791 return columnName(
792 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text, COLNAME_COLUMN);
drhe590fbd2005-05-20 19:36:01 +0000793}
794#ifndef SQLITE_OMIT_UTF16
795const void *sqlite3_column_origin_name16(sqlite3_stmt *pStmt, int N){
danielk1977955de522006-02-10 02:27:42 +0000796 return columnName(
797 pStmt, N, (const void*(*)(Mem*))sqlite3_value_text16, COLNAME_COLUMN);
drhe590fbd2005-05-20 19:36:01 +0000798}
799#endif /* SQLITE_OMIT_UTF16 */
danielk19774b1ae992006-02-10 03:06:10 +0000800#endif /* SQLITE_ENABLE_COLUMN_METADATA */
drhe590fbd2005-05-20 19:36:01 +0000801
802
drh4f26d6c2004-05-26 23:25:30 +0000803/******************************* sqlite3_bind_ ***************************
804**
805** Routines used to attach values to wildcards in a compiled SQL statement.
806*/
807/*
808** Unbind the value bound to variable i in virtual machine p. This is the
809** the same as binding a NULL value to the column. If the "i" parameter is
810** out of range, then SQLITE_RANGE is returned. Othewise SQLITE_OK.
811**
812** The error code stored in database p->db is overwritten with the return
813** value in any case.
814*/
815static int vdbeUnbind(Vdbe *p, int i){
816 Mem *pVar;
drh1bcdb0c2004-08-28 14:49:46 +0000817 if( p==0 || p->magic!=VDBE_MAGIC_RUN || p->pc>=0 ){
drh473d1792005-06-06 17:54:55 +0000818 if( p ) sqlite3Error(p->db, SQLITE_MISUSE, 0);
drh4f26d6c2004-05-26 23:25:30 +0000819 return SQLITE_MISUSE;
820 }
821 if( i<1 || i>p->nVar ){
822 sqlite3Error(p->db, SQLITE_RANGE, 0);
823 return SQLITE_RANGE;
824 }
825 i--;
drh290c1942004-08-21 17:54:45 +0000826 pVar = &p->aVar[i];
danielk1977d8123362004-06-12 09:25:12 +0000827 sqlite3VdbeMemRelease(pVar);
drh4f26d6c2004-05-26 23:25:30 +0000828 pVar->flags = MEM_Null;
829 sqlite3Error(p->db, SQLITE_OK, 0);
830 return SQLITE_OK;
831}
832
833/*
drh5e2517e2004-09-24 23:59:12 +0000834** Bind a text or BLOB value.
drh4f26d6c2004-05-26 23:25:30 +0000835*/
drh5e2517e2004-09-24 23:59:12 +0000836static int bindText(
drh605264d2007-08-21 15:13:19 +0000837 sqlite3_stmt *pStmt, /* The statement to bind against */
838 int i, /* Index of the parameter to bind */
839 const void *zData, /* Pointer to the data to be bound */
840 int nData, /* Number of bytes of data to be bound */
841 void (*xDel)(void*), /* Destructor for the data */
842 int encoding /* Encoding for the data */
drh4f26d6c2004-05-26 23:25:30 +0000843){
844 Vdbe *p = (Vdbe *)pStmt;
845 Mem *pVar;
846 int rc;
847
drh605264d2007-08-21 15:13:19 +0000848 if( p==0 ){
849 return SQLITE_MISUSE;
850 }
851 sqlite3_mutex_enter(p->db->mutex);
drh4f26d6c2004-05-26 23:25:30 +0000852 rc = vdbeUnbind(p, i);
drh27641702007-08-22 02:56:42 +0000853 if( rc==SQLITE_OK && zData!=0 ){
854 pVar = &p->aVar[i-1];
855 rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel);
856 if( rc==SQLITE_OK && encoding!=0 ){
857 rc = sqlite3VdbeChangeEncoding(pVar, ENC(p->db));
858 }
859 sqlite3Error(p->db, rc, 0);
860 rc = sqlite3ApiExit(p->db, rc);
drh4f26d6c2004-05-26 23:25:30 +0000861 }
drh605264d2007-08-21 15:13:19 +0000862 sqlite3_mutex_leave(p->db->mutex);
863 return rc;
drh4f26d6c2004-05-26 23:25:30 +0000864}
drh5e2517e2004-09-24 23:59:12 +0000865
866
867/*
868** Bind a blob value to an SQL statement variable.
869*/
870int sqlite3_bind_blob(
871 sqlite3_stmt *pStmt,
872 int i,
873 const void *zData,
874 int nData,
875 void (*xDel)(void*)
876){
877 return bindText(pStmt, i, zData, nData, xDel, 0);
878}
drh4f26d6c2004-05-26 23:25:30 +0000879int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
880 int rc;
881 Vdbe *p = (Vdbe *)pStmt;
drh605264d2007-08-21 15:13:19 +0000882 sqlite3_mutex_enter(p->db->mutex);
drh4f26d6c2004-05-26 23:25:30 +0000883 rc = vdbeUnbind(p, i);
884 if( rc==SQLITE_OK ){
drh290c1942004-08-21 17:54:45 +0000885 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
drh4f26d6c2004-05-26 23:25:30 +0000886 }
drh605264d2007-08-21 15:13:19 +0000887 sqlite3_mutex_leave(p->db->mutex);
danielk1977f4618892004-06-28 13:09:11 +0000888 return rc;
drh4f26d6c2004-05-26 23:25:30 +0000889}
890int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
drhefad9992004-06-22 12:13:55 +0000891 return sqlite3_bind_int64(p, i, (i64)iValue);
drh4f26d6c2004-05-26 23:25:30 +0000892}
drhefad9992004-06-22 12:13:55 +0000893int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
drh4f26d6c2004-05-26 23:25:30 +0000894 int rc;
895 Vdbe *p = (Vdbe *)pStmt;
drh605264d2007-08-21 15:13:19 +0000896 sqlite3_mutex_enter(p->db->mutex);
drh4f26d6c2004-05-26 23:25:30 +0000897 rc = vdbeUnbind(p, i);
898 if( rc==SQLITE_OK ){
drh290c1942004-08-21 17:54:45 +0000899 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
drh4f26d6c2004-05-26 23:25:30 +0000900 }
drh605264d2007-08-21 15:13:19 +0000901 sqlite3_mutex_leave(p->db->mutex);
drh4f26d6c2004-05-26 23:25:30 +0000902 return rc;
903}
drh605264d2007-08-21 15:13:19 +0000904int sqlite3_bind_null(sqlite3_stmt *pStmt, int i){
905 int rc;
906 Vdbe *p = (Vdbe*)pStmt;
907 sqlite3_mutex_enter(p->db->mutex);
908 rc = vdbeUnbind(p, i);
909 sqlite3_mutex_leave(p->db->mutex);
910 return rc;
drh4f26d6c2004-05-26 23:25:30 +0000911}
912int sqlite3_bind_text(
913 sqlite3_stmt *pStmt,
914 int i,
915 const char *zData,
916 int nData,
danielk1977d8123362004-06-12 09:25:12 +0000917 void (*xDel)(void*)
drh4f26d6c2004-05-26 23:25:30 +0000918){
drh5e2517e2004-09-24 23:59:12 +0000919 return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8);
drh4f26d6c2004-05-26 23:25:30 +0000920}
drh6c626082004-11-14 21:56:29 +0000921#ifndef SQLITE_OMIT_UTF16
drh4f26d6c2004-05-26 23:25:30 +0000922int sqlite3_bind_text16(
923 sqlite3_stmt *pStmt,
924 int i,
925 const void *zData,
926 int nData,
danielk1977d8123362004-06-12 09:25:12 +0000927 void (*xDel)(void*)
drh4f26d6c2004-05-26 23:25:30 +0000928){
drh5e2517e2004-09-24 23:59:12 +0000929 return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE);
drh4f26d6c2004-05-26 23:25:30 +0000930}
drh6c626082004-11-14 21:56:29 +0000931#endif /* SQLITE_OMIT_UTF16 */
danielk197726e41442006-06-14 15:16:35 +0000932int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){
933 int rc;
934 Vdbe *p = (Vdbe *)pStmt;
drh605264d2007-08-21 15:13:19 +0000935 sqlite3_mutex_enter(p->db->mutex);
danielk197726e41442006-06-14 15:16:35 +0000936 rc = vdbeUnbind(p, i);
937 if( rc==SQLITE_OK ){
drhb21c8cd2007-08-21 19:33:56 +0000938 rc = sqlite3VdbeMemCopy(&p->aVar[i-1], pValue);
danielk197726e41442006-06-14 15:16:35 +0000939 }
drh605264d2007-08-21 15:13:19 +0000940 sqlite3_mutex_leave(p->db->mutex);
danielk197726e41442006-06-14 15:16:35 +0000941 return rc;
942}
drhb026e052007-05-02 01:34:31 +0000943int sqlite3_bind_zeroblob(sqlite3_stmt *pStmt, int i, int n){
944 int rc;
945 Vdbe *p = (Vdbe *)pStmt;
drh605264d2007-08-21 15:13:19 +0000946 sqlite3_mutex_enter(p->db->mutex);
drhb026e052007-05-02 01:34:31 +0000947 rc = vdbeUnbind(p, i);
948 if( rc==SQLITE_OK ){
949 sqlite3VdbeMemSetZeroBlob(&p->aVar[i-1], n);
950 }
drh605264d2007-08-21 15:13:19 +0000951 sqlite3_mutex_leave(p->db->mutex);
drhb026e052007-05-02 01:34:31 +0000952 return rc;
953}
drh75f6a032004-07-15 14:15:00 +0000954
955/*
956** Return the number of wildcards that can be potentially bound to.
957** This routine is added to support DBD::SQLite.
drh75f6a032004-07-15 14:15:00 +0000958*/
959int sqlite3_bind_parameter_count(sqlite3_stmt *pStmt){
drh92febd92004-08-20 18:34:20 +0000960 Vdbe *p = (Vdbe*)pStmt;
961 return p ? p->nVar : 0;
drh75f6a032004-07-15 14:15:00 +0000962}
drh895d7472004-08-20 16:02:39 +0000963
964/*
drhfa6bc002004-09-07 16:19:52 +0000965** Create a mapping from variable numbers to variable names
966** in the Vdbe.azVar[] array, if such a mapping does not already
967** exist.
drh895d7472004-08-20 16:02:39 +0000968*/
drhfa6bc002004-09-07 16:19:52 +0000969static void createVarMap(Vdbe *p){
drh895d7472004-08-20 16:02:39 +0000970 if( !p->okVar ){
drh605264d2007-08-21 15:13:19 +0000971 sqlite3_mutex_enter(p->db->mutex);
972 if( !p->okVar ){
973 int j;
974 Op *pOp;
975 for(j=0, pOp=p->aOp; j<p->nOp; j++, pOp++){
976 if( pOp->opcode==OP_Variable ){
977 assert( pOp->p1>0 && pOp->p1<=p->nVar );
danielk19772dca4ac2008-01-03 11:50:29 +0000978 p->azVar[pOp->p1-1] = pOp->p4.z;
drh605264d2007-08-21 15:13:19 +0000979 }
drh895d7472004-08-20 16:02:39 +0000980 }
drh605264d2007-08-21 15:13:19 +0000981 p->okVar = 1;
drh895d7472004-08-20 16:02:39 +0000982 }
drh605264d2007-08-21 15:13:19 +0000983 sqlite3_mutex_leave(p->db->mutex);
drh895d7472004-08-20 16:02:39 +0000984 }
drhfa6bc002004-09-07 16:19:52 +0000985}
986
987/*
988** Return the name of a wildcard parameter. Return NULL if the index
989** is out of range or if the wildcard is unnamed.
990**
991** The result is always UTF-8.
992*/
993const char *sqlite3_bind_parameter_name(sqlite3_stmt *pStmt, int i){
994 Vdbe *p = (Vdbe*)pStmt;
995 if( p==0 || i<1 || i>p->nVar ){
996 return 0;
997 }
998 createVarMap(p);
drh895d7472004-08-20 16:02:39 +0000999 return p->azVar[i-1];
1000}
drhfa6bc002004-09-07 16:19:52 +00001001
1002/*
1003** Given a wildcard parameter name, return the index of the variable
1004** with that name. If there is no variable with the given name,
1005** return 0.
1006*/
1007int sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName){
1008 Vdbe *p = (Vdbe*)pStmt;
1009 int i;
1010 if( p==0 ){
1011 return 0;
1012 }
1013 createVarMap(p);
drh6a8903c2004-12-10 18:00:04 +00001014 if( zName ){
1015 for(i=0; i<p->nVar; i++){
1016 const char *z = p->azVar[i];
1017 if( z && strcmp(z,zName)==0 ){
1018 return i+1;
1019 }
drhfa6bc002004-09-07 16:19:52 +00001020 }
1021 }
1022 return 0;
1023}
drhf8db1bc2005-04-22 02:38:37 +00001024
drh51942bc2005-06-12 22:01:42 +00001025/*
drhf8db1bc2005-04-22 02:38:37 +00001026** Transfer all bindings from the first statement over to the second.
1027** If the two statements contain a different number of bindings, then
1028** an SQLITE_ERROR is returned.
1029*/
1030int sqlite3_transfer_bindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){
1031 Vdbe *pFrom = (Vdbe*)pFromStmt;
1032 Vdbe *pTo = (Vdbe*)pToStmt;
1033 int i, rc = SQLITE_OK;
1034 if( (pFrom->magic!=VDBE_MAGIC_RUN && pFrom->magic!=VDBE_MAGIC_HALT)
drh27641702007-08-22 02:56:42 +00001035 || (pTo->magic!=VDBE_MAGIC_RUN && pTo->magic!=VDBE_MAGIC_HALT)
1036 || pTo->db!=pFrom->db ){
drhf8db1bc2005-04-22 02:38:37 +00001037 return SQLITE_MISUSE;
1038 }
1039 if( pFrom->nVar!=pTo->nVar ){
1040 return SQLITE_ERROR;
1041 }
drh27641702007-08-22 02:56:42 +00001042 sqlite3_mutex_enter(pTo->db->mutex);
drhf8db1bc2005-04-22 02:38:37 +00001043 for(i=0; rc==SQLITE_OK && i<pFrom->nVar; i++){
drh643167f2008-01-22 21:30:53 +00001044 sqlite3VdbeMemMove(&pTo->aVar[i], &pFrom->aVar[i]);
drhf8db1bc2005-04-22 02:38:37 +00001045 }
drh27641702007-08-22 02:56:42 +00001046 sqlite3_mutex_leave(pTo->db->mutex);
drh4ac285a2006-09-15 07:28:50 +00001047 assert( rc==SQLITE_OK || rc==SQLITE_NOMEM );
drhf8db1bc2005-04-22 02:38:37 +00001048 return rc;
1049}
drh51942bc2005-06-12 22:01:42 +00001050
1051/*
1052** Return the sqlite3* database handle to which the prepared statement given
1053** in the argument belongs. This is the same database handle that was
1054** the first argument to the sqlite3_prepare() that was used to create
1055** the statement in the first place.
1056*/
1057sqlite3 *sqlite3_db_handle(sqlite3_stmt *pStmt){
1058 return pStmt ? ((Vdbe*)pStmt)->db : 0;
1059}