xref: /sqlite-3.40.0/src/prepare.c (revision cd7274ce)
1 /*
2 ** 2005 May 25
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 ** This file contains the implementation of the sqlite3_prepare()
13 ** interface, and routines that contribute to loading the database schema
14 ** from disk.
15 **
16 ** $Id: prepare.c,v 1.64 2007/11/14 06:48:48 danielk1977 Exp $
17 */
18 #include "sqliteInt.h"
19 #include <ctype.h>
20 
21 /*
22 ** Fill the InitData structure with an error message that indicates
23 ** that the database is corrupt.
24 */
25 static void corruptSchema(InitData *pData, const char *zExtra){
26   if( !pData->db->mallocFailed ){
27     sqlite3SetString(pData->pzErrMsg, "malformed database schema",
28        zExtra!=0 && zExtra[0]!=0 ? " - " : (char*)0, zExtra, (char*)0);
29   }
30   pData->rc = SQLITE_CORRUPT;
31 }
32 
33 /*
34 ** This is the callback routine for the code that initializes the
35 ** database.  See sqlite3Init() below for additional information.
36 ** This routine is also called from the OP_ParseSchema opcode of the VDBE.
37 **
38 ** Each callback contains the following information:
39 **
40 **     argv[0] = name of thing being created
41 **     argv[1] = root page number for table or index. 0 for trigger or view.
42 **     argv[2] = SQL text for the CREATE statement.
43 **
44 */
45 int sqlite3InitCallback(void *pInit, int argc, char **argv, char **azColName){
46   InitData *pData = (InitData*)pInit;
47   sqlite3 *db = pData->db;
48   int iDb = pData->iDb;
49 
50   assert( sqlite3_mutex_held(db->mutex) );
51   pData->rc = SQLITE_OK;
52   DbClearProperty(db, iDb, DB_Empty);
53   if( db->mallocFailed ){
54     corruptSchema(pData, 0);
55     return SQLITE_NOMEM;
56   }
57 
58   assert( argc==3 );
59   if( argv==0 ) return 0;   /* Might happen if EMPTY_RESULT_CALLBACKS are on */
60   if( argv[1]==0 ){
61     corruptSchema(pData, 0);
62     return 1;
63   }
64   assert( iDb>=0 && iDb<db->nDb );
65   if( argv[2] && argv[2][0] ){
66     /* Call the parser to process a CREATE TABLE, INDEX or VIEW.
67     ** But because db->init.busy is set to 1, no VDBE code is generated
68     ** or executed.  All the parser does is build the internal data
69     ** structures that describe the table, index, or view.
70     */
71     char *zErr;
72     int rc;
73     assert( db->init.busy );
74     db->init.iDb = iDb;
75     db->init.newTnum = atoi(argv[1]);
76     rc = sqlite3_exec(db, argv[2], 0, 0, &zErr);
77     db->init.iDb = 0;
78     assert( rc!=SQLITE_OK || zErr==0 );
79     if( SQLITE_OK!=rc ){
80       pData->rc = rc;
81       if( rc==SQLITE_NOMEM ){
82         db->mallocFailed = 1;
83       }else if( rc!=SQLITE_INTERRUPT ){
84         corruptSchema(pData, zErr);
85       }
86       sqlite3_free(zErr);
87       return 1;
88     }
89   }else{
90     /* If the SQL column is blank it means this is an index that
91     ** was created to be the PRIMARY KEY or to fulfill a UNIQUE
92     ** constraint for a CREATE TABLE.  The index should have already
93     ** been created when we processed the CREATE TABLE.  All we have
94     ** to do here is record the root page number for that index.
95     */
96     Index *pIndex;
97     pIndex = sqlite3FindIndex(db, argv[0], db->aDb[iDb].zName);
98     if( pIndex==0 || pIndex->tnum!=0 ){
99       /* This can occur if there exists an index on a TEMP table which
100       ** has the same name as another index on a permanent index.  Since
101       ** the permanent table is hidden by the TEMP table, we can also
102       ** safely ignore the index on the permanent table.
103       */
104       /* Do Nothing */;
105     }else{
106       pIndex->tnum = atoi(argv[1]);
107     }
108   }
109   return 0;
110 }
111 
112 /*
113 ** Attempt to read the database schema and initialize internal
114 ** data structures for a single database file.  The index of the
115 ** database file is given by iDb.  iDb==0 is used for the main
116 ** database.  iDb==1 should never be used.  iDb>=2 is used for
117 ** auxiliary databases.  Return one of the SQLITE_ error codes to
118 ** indicate success or failure.
119 */
120 static int sqlite3InitOne(sqlite3 *db, int iDb, char **pzErrMsg){
121   int rc;
122   BtCursor *curMain;
123   int size;
124   Table *pTab;
125   Db *pDb;
126   char const *azArg[4];
127   int meta[10];
128   InitData initData;
129   char const *zMasterSchema;
130   char const *zMasterName = SCHEMA_TABLE(iDb);
131 
132   /*
133   ** The master database table has a structure like this
134   */
135   static const char master_schema[] =
136      "CREATE TABLE sqlite_master(\n"
137      "  type text,\n"
138      "  name text,\n"
139      "  tbl_name text,\n"
140      "  rootpage integer,\n"
141      "  sql text\n"
142      ")"
143   ;
144 #ifndef SQLITE_OMIT_TEMPDB
145   static const char temp_master_schema[] =
146      "CREATE TEMP TABLE sqlite_temp_master(\n"
147      "  type text,\n"
148      "  name text,\n"
149      "  tbl_name text,\n"
150      "  rootpage integer,\n"
151      "  sql text\n"
152      ")"
153   ;
154 #else
155   #define temp_master_schema 0
156 #endif
157 
158   assert( iDb>=0 && iDb<db->nDb );
159   assert( db->aDb[iDb].pSchema );
160   assert( sqlite3_mutex_held(db->mutex) );
161 
162   /* zMasterSchema and zInitScript are set to point at the master schema
163   ** and initialisation script appropriate for the database being
164   ** initialised. zMasterName is the name of the master table.
165   */
166   if( !OMIT_TEMPDB && iDb==1 ){
167     zMasterSchema = temp_master_schema;
168   }else{
169     zMasterSchema = master_schema;
170   }
171   zMasterName = SCHEMA_TABLE(iDb);
172 
173   /* Construct the schema tables.  */
174   sqlite3SafetyOff(db);
175   azArg[0] = zMasterName;
176   azArg[1] = "1";
177   azArg[2] = zMasterSchema;
178   azArg[3] = 0;
179   initData.db = db;
180   initData.iDb = iDb;
181   initData.pzErrMsg = pzErrMsg;
182   rc = sqlite3InitCallback(&initData, 3, (char **)azArg, 0);
183   if( rc ){
184     sqlite3SafetyOn(db);
185     rc = initData.rc;
186     goto error_out;
187   }
188   pTab = sqlite3FindTable(db, zMasterName, db->aDb[iDb].zName);
189   if( pTab ){
190     pTab->readOnly = 1;
191   }
192   sqlite3SafetyOn(db);
193 
194   /* Create a cursor to hold the database open
195   */
196   pDb = &db->aDb[iDb];
197   if( pDb->pBt==0 ){
198     if( !OMIT_TEMPDB && iDb==1 ){
199       DbSetProperty(db, 1, DB_SchemaLoaded);
200     }
201     return SQLITE_OK;
202   }
203   sqlite3BtreeEnter(pDb->pBt);
204   rc = sqlite3BtreeCursor(pDb->pBt, MASTER_ROOT, 0, 0, 0, &curMain);
205   if( rc!=SQLITE_OK && rc!=SQLITE_EMPTY ){
206     sqlite3SetString(pzErrMsg, sqlite3ErrStr(rc), (char*)0);
207     sqlite3BtreeLeave(pDb->pBt);
208     goto error_out;
209   }
210 
211   /* Get the database meta information.
212   **
213   ** Meta values are as follows:
214   **    meta[0]   Schema cookie.  Changes with each schema change.
215   **    meta[1]   File format of schema layer.
216   **    meta[2]   Size of the page cache.
217   **    meta[3]   Use freelist if 0.  Autovacuum if greater than zero.
218   **    meta[4]   Db text encoding. 1:UTF-8 2:UTF-16LE 3:UTF-16BE
219   **    meta[5]   The user cookie. Used by the application.
220   **    meta[6]   Incremental-vacuum flag.
221   **    meta[7]
222   **    meta[8]
223   **    meta[9]
224   **
225   ** Note: The #defined SQLITE_UTF* symbols in sqliteInt.h correspond to
226   ** the possible values of meta[4].
227   */
228   if( rc==SQLITE_OK ){
229     int i;
230     for(i=0; rc==SQLITE_OK && i<sizeof(meta)/sizeof(meta[0]); i++){
231       rc = sqlite3BtreeGetMeta(pDb->pBt, i+1, (u32 *)&meta[i]);
232     }
233     if( rc ){
234       sqlite3SetString(pzErrMsg, sqlite3ErrStr(rc), (char*)0);
235       sqlite3BtreeCloseCursor(curMain);
236       sqlite3BtreeLeave(pDb->pBt);
237       goto error_out;
238     }
239   }else{
240     memset(meta, 0, sizeof(meta));
241   }
242   pDb->pSchema->schema_cookie = meta[0];
243 
244   /* If opening a non-empty database, check the text encoding. For the
245   ** main database, set sqlite3.enc to the encoding of the main database.
246   ** For an attached db, it is an error if the encoding is not the same
247   ** as sqlite3.enc.
248   */
249   if( meta[4] ){  /* text encoding */
250     if( iDb==0 ){
251       /* If opening the main database, set ENC(db). */
252       ENC(db) = (u8)meta[4];
253       db->pDfltColl = sqlite3FindCollSeq(db, SQLITE_UTF8, "BINARY", 6, 0);
254     }else{
255       /* If opening an attached database, the encoding much match ENC(db) */
256       if( meta[4]!=ENC(db) ){
257         sqlite3BtreeCloseCursor(curMain);
258         sqlite3SetString(pzErrMsg, "attached databases must use the same"
259             " text encoding as main database", (char*)0);
260         sqlite3BtreeLeave(pDb->pBt);
261         return SQLITE_ERROR;
262       }
263     }
264   }else{
265     DbSetProperty(db, iDb, DB_Empty);
266   }
267   pDb->pSchema->enc = ENC(db);
268 
269   size = meta[2];
270   if( size==0 ){ size = SQLITE_DEFAULT_CACHE_SIZE; }
271   pDb->pSchema->cache_size = size;
272   sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
273 
274   /*
275   ** file_format==1    Version 3.0.0.
276   ** file_format==2    Version 3.1.3.  // ALTER TABLE ADD COLUMN
277   ** file_format==3    Version 3.1.4.  // ditto but with non-NULL defaults
278   ** file_format==4    Version 3.3.0.  // DESC indices.  Boolean constants
279   */
280   pDb->pSchema->file_format = meta[1];
281   if( pDb->pSchema->file_format==0 ){
282     pDb->pSchema->file_format = 1;
283   }
284   if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){
285     sqlite3BtreeCloseCursor(curMain);
286     sqlite3SetString(pzErrMsg, "unsupported file format", (char*)0);
287     sqlite3BtreeLeave(pDb->pBt);
288     return SQLITE_ERROR;
289   }
290 
291 
292   /* Read the schema information out of the schema tables
293   */
294   assert( db->init.busy );
295   if( rc==SQLITE_EMPTY ){
296     /* For an empty database, there is nothing to read */
297     rc = SQLITE_OK;
298   }else{
299     char *zSql;
300     zSql = sqlite3MPrintf(db,
301         "SELECT name, rootpage, sql FROM '%q'.%s",
302         db->aDb[iDb].zName, zMasterName);
303     sqlite3SafetyOff(db);
304 #ifndef SQLITE_OMIT_AUTHORIZATION
305     {
306       int (*xAuth)(void*,int,const char*,const char*,const char*,const char*);
307       xAuth = db->xAuth;
308       db->xAuth = 0;
309 #endif
310       rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
311 #ifndef SQLITE_OMIT_AUTHORIZATION
312       db->xAuth = xAuth;
313     }
314 #endif
315     if( rc==SQLITE_ABORT ) rc = initData.rc;
316     sqlite3SafetyOn(db);
317     sqlite3_free(zSql);
318 #ifndef SQLITE_OMIT_ANALYZE
319     if( rc==SQLITE_OK ){
320       sqlite3AnalysisLoad(db, iDb);
321     }
322 #endif
323     sqlite3BtreeCloseCursor(curMain);
324   }
325   if( db->mallocFailed ){
326     /* sqlite3SetString(pzErrMsg, "out of memory", (char*)0); */
327     rc = SQLITE_NOMEM;
328     sqlite3ResetInternalSchema(db, 0);
329   }
330   if( rc==SQLITE_OK || (db->flags&SQLITE_RecoveryMode)){
331     /* Black magic: If the SQLITE_RecoveryMode flag is set, then consider
332     ** the schema loaded, even if errors occured. In this situation the
333     ** current sqlite3_prepare() operation will fail, but the following one
334     ** will attempt to compile the supplied statement against whatever subset
335     ** of the schema was loaded before the error occured. The primary
336     ** purpose of this is to allow access to the sqlite_master table
337     ** even when it's contents have been corrupted.
338     */
339     DbSetProperty(db, iDb, DB_SchemaLoaded);
340     rc = SQLITE_OK;
341   }
342   sqlite3BtreeLeave(pDb->pBt);
343 
344 error_out:
345   if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){
346     db->mallocFailed = 1;
347   }
348   return rc;
349 }
350 
351 /*
352 ** Initialize all database files - the main database file, the file
353 ** used to store temporary tables, and any additional database files
354 ** created using ATTACH statements.  Return a success code.  If an
355 ** error occurs, write an error message into *pzErrMsg.
356 **
357 ** After a database is initialized, the DB_SchemaLoaded bit is set
358 ** bit is set in the flags field of the Db structure. If the database
359 ** file was of zero-length, then the DB_Empty flag is also set.
360 */
361 int sqlite3Init(sqlite3 *db, char **pzErrMsg){
362   int i, rc;
363   int commit_internal = !(db->flags&SQLITE_InternChanges);
364 
365   assert( sqlite3_mutex_held(db->mutex) );
366   if( db->init.busy ) return SQLITE_OK;
367   rc = SQLITE_OK;
368   db->init.busy = 1;
369   for(i=0; rc==SQLITE_OK && i<db->nDb; i++){
370     if( DbHasProperty(db, i, DB_SchemaLoaded) || i==1 ) continue;
371     rc = sqlite3InitOne(db, i, pzErrMsg);
372     if( rc ){
373       sqlite3ResetInternalSchema(db, i);
374     }
375   }
376 
377   /* Once all the other databases have been initialised, load the schema
378   ** for the TEMP database. This is loaded last, as the TEMP database
379   ** schema may contain references to objects in other databases.
380   */
381 #ifndef SQLITE_OMIT_TEMPDB
382   if( rc==SQLITE_OK && db->nDb>1 && !DbHasProperty(db, 1, DB_SchemaLoaded) ){
383     rc = sqlite3InitOne(db, 1, pzErrMsg);
384     if( rc ){
385       sqlite3ResetInternalSchema(db, 1);
386     }
387   }
388 #endif
389 
390   db->init.busy = 0;
391   if( rc==SQLITE_OK && commit_internal ){
392     sqlite3CommitInternalChanges(db);
393   }
394 
395   return rc;
396 }
397 
398 /*
399 ** This routine is a no-op if the database schema is already initialised.
400 ** Otherwise, the schema is loaded. An error code is returned.
401 */
402 int sqlite3ReadSchema(Parse *pParse){
403   int rc = SQLITE_OK;
404   sqlite3 *db = pParse->db;
405   assert( sqlite3_mutex_held(db->mutex) );
406   if( !db->init.busy ){
407     rc = sqlite3Init(db, &pParse->zErrMsg);
408   }
409   if( rc!=SQLITE_OK ){
410     pParse->rc = rc;
411     pParse->nErr++;
412   }
413   return rc;
414 }
415 
416 
417 /*
418 ** Check schema cookies in all databases.  If any cookie is out
419 ** of date, return 0.  If all schema cookies are current, return 1.
420 */
421 static int schemaIsValid(sqlite3 *db){
422   int iDb;
423   int rc;
424   BtCursor *curTemp;
425   int cookie;
426   int allOk = 1;
427 
428   assert( sqlite3_mutex_held(db->mutex) );
429   for(iDb=0; allOk && iDb<db->nDb; iDb++){
430     Btree *pBt;
431     pBt = db->aDb[iDb].pBt;
432     if( pBt==0 ) continue;
433     rc = sqlite3BtreeCursor(pBt, MASTER_ROOT, 0, 0, 0, &curTemp);
434     if( rc==SQLITE_OK ){
435       rc = sqlite3BtreeGetMeta(pBt, 1, (u32 *)&cookie);
436       if( rc==SQLITE_OK && cookie!=db->aDb[iDb].pSchema->schema_cookie ){
437         allOk = 0;
438       }
439       sqlite3BtreeCloseCursor(curTemp);
440     }
441     if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){
442       db->mallocFailed = 1;
443     }
444   }
445   return allOk;
446 }
447 
448 /*
449 ** Convert a schema pointer into the iDb index that indicates
450 ** which database file in db->aDb[] the schema refers to.
451 **
452 ** If the same database is attached more than once, the first
453 ** attached database is returned.
454 */
455 int sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema){
456   int i = -1000000;
457 
458   /* If pSchema is NULL, then return -1000000. This happens when code in
459   ** expr.c is trying to resolve a reference to a transient table (i.e. one
460   ** created by a sub-select). In this case the return value of this
461   ** function should never be used.
462   **
463   ** We return -1000000 instead of the more usual -1 simply because using
464   ** -1000000 as incorrectly using -1000000 index into db->aDb[] is much
465   ** more likely to cause a segfault than -1 (of course there are assert()
466   ** statements too, but it never hurts to play the odds).
467   */
468   assert( sqlite3_mutex_held(db->mutex) );
469   if( pSchema ){
470     for(i=0; i<db->nDb; i++){
471       if( db->aDb[i].pSchema==pSchema ){
472         break;
473       }
474     }
475     assert( i>=0 &&i>=0 &&  i<db->nDb );
476   }
477   return i;
478 }
479 
480 /*
481 ** Compile the UTF-8 encoded SQL statement zSql into a statement handle.
482 */
483 int sqlite3Prepare(
484   sqlite3 *db,              /* Database handle. */
485   const char *zSql,         /* UTF-8 encoded SQL statement. */
486   int nBytes,               /* Length of zSql in bytes. */
487   int saveSqlFlag,          /* True to copy SQL text into the sqlite3_stmt */
488   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
489   const char **pzTail       /* OUT: End of parsed string */
490 ){
491   Parse sParse;
492   char *zErrMsg = 0;
493   int rc = SQLITE_OK;
494   int i;
495 
496   assert( ppStmt );
497   *ppStmt = 0;
498   if( sqlite3SafetyOn(db) ){
499     return SQLITE_MISUSE;
500   }
501   assert( !db->mallocFailed );
502   assert( sqlite3_mutex_held(db->mutex) );
503 
504   /* If any attached database schemas are locked, do not proceed with
505   ** compilation. Instead return SQLITE_LOCKED immediately.
506   */
507   for(i=0; i<db->nDb; i++) {
508     Btree *pBt = db->aDb[i].pBt;
509     if( pBt ){
510       int rc;
511       rc = sqlite3BtreeSchemaLocked(pBt);
512       if( rc ){
513         const char *zDb = db->aDb[i].zName;
514         sqlite3Error(db, SQLITE_LOCKED, "database schema is locked: %s", zDb);
515         sqlite3SafetyOff(db);
516         return SQLITE_LOCKED;
517       }
518     }
519   }
520 
521   memset(&sParse, 0, sizeof(sParse));
522   sParse.db = db;
523   if( nBytes>=0 && zSql[nBytes]!=0 ){
524     char *zSqlCopy;
525     if( nBytes>SQLITE_MAX_SQL_LENGTH ){
526       return SQLITE_TOOBIG;
527     }
528     zSqlCopy = sqlite3DbStrNDup(db, zSql, nBytes);
529     if( zSqlCopy ){
530       sqlite3RunParser(&sParse, zSqlCopy, &zErrMsg);
531       sqlite3_free(zSqlCopy);
532     }
533     sParse.zTail = &zSql[nBytes];
534   }else{
535     sqlite3RunParser(&sParse, zSql, &zErrMsg);
536   }
537 
538   if( db->mallocFailed ){
539     sParse.rc = SQLITE_NOMEM;
540   }
541   if( sParse.rc==SQLITE_DONE ) sParse.rc = SQLITE_OK;
542   if( sParse.checkSchema && !schemaIsValid(db) ){
543     sParse.rc = SQLITE_SCHEMA;
544   }
545   if( sParse.rc==SQLITE_SCHEMA ){
546     sqlite3ResetInternalSchema(db, 0);
547   }
548   if( db->mallocFailed ){
549     sParse.rc = SQLITE_NOMEM;
550   }
551   if( pzTail ){
552     *pzTail = sParse.zTail;
553   }
554   rc = sParse.rc;
555 
556 #ifndef SQLITE_OMIT_EXPLAIN
557   if( rc==SQLITE_OK && sParse.pVdbe && sParse.explain ){
558     if( sParse.explain==2 ){
559       sqlite3VdbeSetNumCols(sParse.pVdbe, 3);
560       sqlite3VdbeSetColName(sParse.pVdbe, 0, COLNAME_NAME, "order", P3_STATIC);
561       sqlite3VdbeSetColName(sParse.pVdbe, 1, COLNAME_NAME, "from", P3_STATIC);
562       sqlite3VdbeSetColName(sParse.pVdbe, 2, COLNAME_NAME, "detail", P3_STATIC);
563     }else{
564       sqlite3VdbeSetNumCols(sParse.pVdbe, 5);
565       sqlite3VdbeSetColName(sParse.pVdbe, 0, COLNAME_NAME, "addr", P3_STATIC);
566       sqlite3VdbeSetColName(sParse.pVdbe, 1, COLNAME_NAME, "opcode", P3_STATIC);
567       sqlite3VdbeSetColName(sParse.pVdbe, 2, COLNAME_NAME, "p1", P3_STATIC);
568       sqlite3VdbeSetColName(sParse.pVdbe, 3, COLNAME_NAME, "p2", P3_STATIC);
569       sqlite3VdbeSetColName(sParse.pVdbe, 4, COLNAME_NAME, "p3", P3_STATIC);
570     }
571   }
572 #endif
573 
574   if( sqlite3SafetyOff(db) ){
575     rc = SQLITE_MISUSE;
576   }
577 
578   if( saveSqlFlag ){
579     sqlite3VdbeSetSql(sParse.pVdbe, zSql, sParse.zTail - zSql);
580   }
581   if( rc!=SQLITE_OK || db->mallocFailed ){
582     sqlite3_finalize((sqlite3_stmt*)sParse.pVdbe);
583     assert(!(*ppStmt));
584   }else{
585     *ppStmt = (sqlite3_stmt*)sParse.pVdbe;
586   }
587 
588   if( zErrMsg ){
589     sqlite3Error(db, rc, "%s", zErrMsg);
590     sqlite3_free(zErrMsg);
591   }else{
592     sqlite3Error(db, rc, 0);
593   }
594 
595   rc = sqlite3ApiExit(db, rc);
596   /* sqlite3ReleaseThreadData(); */
597   assert( (rc&db->errMask)==rc );
598   return rc;
599 }
600 static int sqlite3LockAndPrepare(
601   sqlite3 *db,              /* Database handle. */
602   const char *zSql,         /* UTF-8 encoded SQL statement. */
603   int nBytes,               /* Length of zSql in bytes. */
604   int saveSqlFlag,          /* True to copy SQL text into the sqlite3_stmt */
605   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
606   const char **pzTail       /* OUT: End of parsed string */
607 ){
608   int rc;
609   if( sqlite3SafetyCheck(db) ){
610     return SQLITE_MISUSE;
611   }
612   sqlite3_mutex_enter(db->mutex);
613   sqlite3BtreeEnterAll(db);
614   rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, ppStmt, pzTail);
615   sqlite3BtreeLeaveAll(db);
616   sqlite3_mutex_leave(db->mutex);
617   return rc;
618 }
619 
620 /*
621 ** Rerun the compilation of a statement after a schema change.
622 ** Return true if the statement was recompiled successfully.
623 ** Return false if there is an error of some kind.
624 */
625 int sqlite3Reprepare(Vdbe *p){
626   int rc;
627   sqlite3_stmt *pNew;
628   const char *zSql;
629   sqlite3 *db;
630 
631   assert( sqlite3_mutex_held(sqlite3VdbeDb(p)->mutex) );
632   zSql = sqlite3_sql((sqlite3_stmt *)p);
633   if( zSql==0 ){
634     return 0;
635   }
636   db = sqlite3VdbeDb(p);
637   assert( sqlite3_mutex_held(db->mutex) );
638   rc = sqlite3LockAndPrepare(db, zSql, -1, 0, &pNew, 0);
639   if( rc ){
640     if( rc==SQLITE_NOMEM ){
641       db->mallocFailed = 1;
642     }
643     assert( pNew==0 );
644     return 0;
645   }else{
646     assert( pNew!=0 );
647   }
648   sqlite3VdbeSwap((Vdbe*)pNew, p);
649   sqlite3_transfer_bindings(pNew, (sqlite3_stmt*)p);
650   sqlite3VdbeResetStepResult((Vdbe*)pNew);
651   sqlite3VdbeFinalize((Vdbe*)pNew);
652   return 1;
653 }
654 
655 
656 /*
657 ** Two versions of the official API.  Legacy and new use.  In the legacy
658 ** version, the original SQL text is not saved in the prepared statement
659 ** and so if a schema change occurs, SQLITE_SCHEMA is returned by
660 ** sqlite3_step().  In the new version, the original SQL text is retained
661 ** and the statement is automatically recompiled if an schema change
662 ** occurs.
663 */
664 int sqlite3_prepare(
665   sqlite3 *db,              /* Database handle. */
666   const char *zSql,         /* UTF-8 encoded SQL statement. */
667   int nBytes,               /* Length of zSql in bytes. */
668   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
669   const char **pzTail       /* OUT: End of parsed string */
670 ){
671   return sqlite3LockAndPrepare(db,zSql,nBytes,0,ppStmt,pzTail);
672 }
673 int sqlite3_prepare_v2(
674   sqlite3 *db,              /* Database handle. */
675   const char *zSql,         /* UTF-8 encoded SQL statement. */
676   int nBytes,               /* Length of zSql in bytes. */
677   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
678   const char **pzTail       /* OUT: End of parsed string */
679 ){
680   return sqlite3LockAndPrepare(db,zSql,nBytes,1,ppStmt,pzTail);
681 }
682 
683 
684 #ifndef SQLITE_OMIT_UTF16
685 /*
686 ** Compile the UTF-16 encoded SQL statement zSql into a statement handle.
687 */
688 static int sqlite3Prepare16(
689   sqlite3 *db,              /* Database handle. */
690   const void *zSql,         /* UTF-8 encoded SQL statement. */
691   int nBytes,               /* Length of zSql in bytes. */
692   int saveSqlFlag,          /* True to save SQL text into the sqlite3_stmt */
693   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
694   const void **pzTail       /* OUT: End of parsed string */
695 ){
696   /* This function currently works by first transforming the UTF-16
697   ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
698   ** tricky bit is figuring out the pointer to return in *pzTail.
699   */
700   char *zSql8;
701   const char *zTail8 = 0;
702   int rc = SQLITE_OK;
703 
704   if( sqlite3SafetyCheck(db) ){
705     return SQLITE_MISUSE;
706   }
707   sqlite3_mutex_enter(db->mutex);
708   zSql8 = sqlite3Utf16to8(db, zSql, nBytes);
709   if( zSql8 ){
710     rc = sqlite3LockAndPrepare(db, zSql8, -1, saveSqlFlag, ppStmt, &zTail8);
711   }
712 
713   if( zTail8 && pzTail ){
714     /* If sqlite3_prepare returns a tail pointer, we calculate the
715     ** equivalent pointer into the UTF-16 string by counting the unicode
716     ** characters between zSql8 and zTail8, and then returning a pointer
717     ** the same number of characters into the UTF-16 string.
718     */
719     int chars_parsed = sqlite3Utf8CharLen(zSql8, zTail8-zSql8);
720     *pzTail = (u8 *)zSql + sqlite3Utf16ByteLen(zSql, chars_parsed);
721   }
722   sqlite3_free(zSql8);
723   rc = sqlite3ApiExit(db, rc);
724   sqlite3_mutex_leave(db->mutex);
725   return rc;
726 }
727 
728 /*
729 ** Two versions of the official API.  Legacy and new use.  In the legacy
730 ** version, the original SQL text is not saved in the prepared statement
731 ** and so if a schema change occurs, SQLITE_SCHEMA is returned by
732 ** sqlite3_step().  In the new version, the original SQL text is retained
733 ** and the statement is automatically recompiled if an schema change
734 ** occurs.
735 */
736 int sqlite3_prepare16(
737   sqlite3 *db,              /* Database handle. */
738   const void *zSql,         /* UTF-8 encoded SQL statement. */
739   int nBytes,               /* Length of zSql in bytes. */
740   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
741   const void **pzTail       /* OUT: End of parsed string */
742 ){
743   return sqlite3Prepare16(db,zSql,nBytes,0,ppStmt,pzTail);
744 }
745 int sqlite3_prepare16_v2(
746   sqlite3 *db,              /* Database handle. */
747   const void *zSql,         /* UTF-8 encoded SQL statement. */
748   int nBytes,               /* Length of zSql in bytes. */
749   sqlite3_stmt **ppStmt,    /* OUT: A pointer to the prepared statement */
750   const void **pzTail       /* OUT: End of parsed string */
751 ){
752   return sqlite3Prepare16(db,zSql,nBytes,1,ppStmt,pzTail);
753 }
754 
755 #endif /* SQLITE_OMIT_UTF16 */
756