os/persistentdata/persistentstorage/sql/SQLite364/pragma.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2003 April 6
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** This file contains code used to implement the PRAGMA command.
sl@0
    13
**
sl@0
    14
** $Id: pragma.c,v 1.189 2008/10/10 17:47:21 danielk1977 Exp $
sl@0
    15
*/
sl@0
    16
#include "sqliteInt.h"
sl@0
    17
#include <ctype.h>
sl@0
    18
sl@0
    19
/* Ignore this whole file if pragmas are disabled
sl@0
    20
*/
sl@0
    21
#if !defined(SQLITE_OMIT_PRAGMA) && !defined(SQLITE_OMIT_PARSER)
sl@0
    22
sl@0
    23
/*
sl@0
    24
** Interpret the given string as a safety level.  Return 0 for OFF,
sl@0
    25
** 1 for ON or NORMAL and 2 for FULL.  Return 1 for an empty or 
sl@0
    26
** unrecognized string argument.
sl@0
    27
**
sl@0
    28
** Note that the values returned are one less that the values that
sl@0
    29
** should be passed into sqlite3BtreeSetSafetyLevel().  The is done
sl@0
    30
** to support legacy SQL code.  The safety level used to be boolean
sl@0
    31
** and older scripts may have used numbers 0 for OFF and 1 for ON.
sl@0
    32
*/
sl@0
    33
static int getSafetyLevel(const char *z){
sl@0
    34
                             /* 123456789 123456789 */
sl@0
    35
  static const char zText[] = "onoffalseyestruefull";
sl@0
    36
  static const u8 iOffset[] = {0, 1, 2, 4, 9, 12, 16};
sl@0
    37
  static const u8 iLength[] = {2, 2, 3, 5, 3, 4, 4};
sl@0
    38
  static const u8 iValue[] =  {1, 0, 0, 0, 1, 1, 2};
sl@0
    39
  int i, n;
sl@0
    40
  if( isdigit(*z) ){
sl@0
    41
    return atoi(z);
sl@0
    42
  }
sl@0
    43
  n = strlen(z);
sl@0
    44
  for(i=0; i<sizeof(iLength); i++){
sl@0
    45
    if( iLength[i]==n && sqlite3StrNICmp(&zText[iOffset[i]],z,n)==0 ){
sl@0
    46
      return iValue[i];
sl@0
    47
    }
sl@0
    48
  }
sl@0
    49
  return 1;
sl@0
    50
}
sl@0
    51
sl@0
    52
/*
sl@0
    53
** Interpret the given string as a boolean value.
sl@0
    54
*/
sl@0
    55
static int getBoolean(const char *z){
sl@0
    56
  return getSafetyLevel(z)&1;
sl@0
    57
}
sl@0
    58
sl@0
    59
/*
sl@0
    60
** Interpret the given string as a locking mode value.
sl@0
    61
*/
sl@0
    62
static int getLockingMode(const char *z){
sl@0
    63
  if( z ){
sl@0
    64
    if( 0==sqlite3StrICmp(z, "exclusive") ) return PAGER_LOCKINGMODE_EXCLUSIVE;
sl@0
    65
    if( 0==sqlite3StrICmp(z, "normal") ) return PAGER_LOCKINGMODE_NORMAL;
sl@0
    66
  }
sl@0
    67
  return PAGER_LOCKINGMODE_QUERY;
sl@0
    68
}
sl@0
    69
sl@0
    70
#ifndef SQLITE_OMIT_AUTOVACUUM
sl@0
    71
/*
sl@0
    72
** Interpret the given string as an auto-vacuum mode value.
sl@0
    73
**
sl@0
    74
** The following strings, "none", "full" and "incremental" are 
sl@0
    75
** acceptable, as are their numeric equivalents: 0, 1 and 2 respectively.
sl@0
    76
*/
sl@0
    77
static int getAutoVacuum(const char *z){
sl@0
    78
  int i;
sl@0
    79
  if( 0==sqlite3StrICmp(z, "none") ) return BTREE_AUTOVACUUM_NONE;
sl@0
    80
  if( 0==sqlite3StrICmp(z, "full") ) return BTREE_AUTOVACUUM_FULL;
sl@0
    81
  if( 0==sqlite3StrICmp(z, "incremental") ) return BTREE_AUTOVACUUM_INCR;
sl@0
    82
  i = atoi(z);
sl@0
    83
  return ((i>=0&&i<=2)?i:0);
sl@0
    84
}
sl@0
    85
#endif /* ifndef SQLITE_OMIT_AUTOVACUUM */
sl@0
    86
sl@0
    87
#ifndef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
    88
/*
sl@0
    89
** Interpret the given string as a temp db location. Return 1 for file
sl@0
    90
** backed temporary databases, 2 for the Red-Black tree in memory database
sl@0
    91
** and 0 to use the compile-time default.
sl@0
    92
*/
sl@0
    93
static int getTempStore(const char *z){
sl@0
    94
  if( z[0]>='0' && z[0]<='2' ){
sl@0
    95
    return z[0] - '0';
sl@0
    96
  }else if( sqlite3StrICmp(z, "file")==0 ){
sl@0
    97
    return 1;
sl@0
    98
  }else if( sqlite3StrICmp(z, "memory")==0 ){
sl@0
    99
    return 2;
sl@0
   100
  }else{
sl@0
   101
    return 0;
sl@0
   102
  }
sl@0
   103
}
sl@0
   104
#endif /* SQLITE_PAGER_PRAGMAS */
sl@0
   105
sl@0
   106
#ifndef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
   107
/*
sl@0
   108
** Invalidate temp storage, either when the temp storage is changed
sl@0
   109
** from default, or when 'file' and the temp_store_directory has changed
sl@0
   110
*/
sl@0
   111
static int invalidateTempStorage(Parse *pParse){
sl@0
   112
  sqlite3 *db = pParse->db;
sl@0
   113
  if( db->aDb[1].pBt!=0 ){
sl@0
   114
    if( !db->autoCommit || sqlite3BtreeIsInReadTrans(db->aDb[1].pBt) ){
sl@0
   115
      sqlite3ErrorMsg(pParse, "temporary storage cannot be changed "
sl@0
   116
        "from within a transaction");
sl@0
   117
      return SQLITE_ERROR;
sl@0
   118
    }
sl@0
   119
    sqlite3BtreeClose(db->aDb[1].pBt);
sl@0
   120
    db->aDb[1].pBt = 0;
sl@0
   121
    sqlite3ResetInternalSchema(db, 0);
sl@0
   122
  }
sl@0
   123
  return SQLITE_OK;
sl@0
   124
}
sl@0
   125
#endif /* SQLITE_PAGER_PRAGMAS */
sl@0
   126
sl@0
   127
#ifndef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
   128
/*
sl@0
   129
** If the TEMP database is open, close it and mark the database schema
sl@0
   130
** as needing reloading.  This must be done when using the SQLITE_TEMP_STORE
sl@0
   131
** or DEFAULT_TEMP_STORE pragmas.
sl@0
   132
*/
sl@0
   133
static int changeTempStorage(Parse *pParse, const char *zStorageType){
sl@0
   134
  int ts = getTempStore(zStorageType);
sl@0
   135
  sqlite3 *db = pParse->db;
sl@0
   136
  if( db->temp_store==ts ) return SQLITE_OK;
sl@0
   137
  if( invalidateTempStorage( pParse ) != SQLITE_OK ){
sl@0
   138
    return SQLITE_ERROR;
sl@0
   139
  }
sl@0
   140
  db->temp_store = ts;
sl@0
   141
  return SQLITE_OK;
sl@0
   142
}
sl@0
   143
#endif /* SQLITE_PAGER_PRAGMAS */
sl@0
   144
sl@0
   145
/*
sl@0
   146
** Generate code to return a single integer value.
sl@0
   147
*/
sl@0
   148
static void returnSingleInt(Parse *pParse, const char *zLabel, int value){
sl@0
   149
  Vdbe *v = sqlite3GetVdbe(pParse);
sl@0
   150
  int mem = ++pParse->nMem;
sl@0
   151
  sqlite3VdbeAddOp2(v, OP_Integer, value, mem);
sl@0
   152
  if( pParse->explain==0 ){
sl@0
   153
    sqlite3VdbeSetNumCols(v, 1);
sl@0
   154
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLabel, P4_STATIC);
sl@0
   155
  }
sl@0
   156
  sqlite3VdbeAddOp2(v, OP_ResultRow, mem, 1);
sl@0
   157
}
sl@0
   158
sl@0
   159
#ifndef SQLITE_OMIT_FLAG_PRAGMAS
sl@0
   160
/*
sl@0
   161
** Check to see if zRight and zLeft refer to a pragma that queries
sl@0
   162
** or changes one of the flags in db->flags.  Return 1 if so and 0 if not.
sl@0
   163
** Also, implement the pragma.
sl@0
   164
*/
sl@0
   165
static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
sl@0
   166
  static const struct sPragmaType {
sl@0
   167
    const char *zName;  /* Name of the pragma */
sl@0
   168
    int mask;           /* Mask for the db->flags value */
sl@0
   169
  } aPragma[] = {
sl@0
   170
    { "full_column_names",        SQLITE_FullColNames  },
sl@0
   171
    { "short_column_names",       SQLITE_ShortColNames },
sl@0
   172
    { "count_changes",            SQLITE_CountRows     },
sl@0
   173
    { "empty_result_callbacks",   SQLITE_NullCallback  },
sl@0
   174
    { "legacy_file_format",       SQLITE_LegacyFileFmt },
sl@0
   175
    { "fullfsync",                SQLITE_FullFSync     },
sl@0
   176
#ifdef SQLITE_DEBUG
sl@0
   177
    { "sql_trace",                SQLITE_SqlTrace      },
sl@0
   178
    { "vdbe_listing",             SQLITE_VdbeListing   },
sl@0
   179
    { "vdbe_trace",               SQLITE_VdbeTrace     },
sl@0
   180
#endif
sl@0
   181
#ifndef SQLITE_OMIT_CHECK
sl@0
   182
    { "ignore_check_constraints", SQLITE_IgnoreChecks  },
sl@0
   183
#endif
sl@0
   184
    /* The following is VERY experimental */
sl@0
   185
    { "writable_schema",          SQLITE_WriteSchema|SQLITE_RecoveryMode },
sl@0
   186
    { "omit_readlock",            SQLITE_NoReadlock    },
sl@0
   187
sl@0
   188
    /* TODO: Maybe it shouldn't be possible to change the ReadUncommitted
sl@0
   189
    ** flag if there are any active statements. */
sl@0
   190
    { "read_uncommitted",         SQLITE_ReadUncommitted },
sl@0
   191
  };
sl@0
   192
  int i;
sl@0
   193
  const struct sPragmaType *p;
sl@0
   194
  for(i=0, p=aPragma; i<sizeof(aPragma)/sizeof(aPragma[0]); i++, p++){
sl@0
   195
    if( sqlite3StrICmp(zLeft, p->zName)==0 ){
sl@0
   196
      sqlite3 *db = pParse->db;
sl@0
   197
      Vdbe *v;
sl@0
   198
      v = sqlite3GetVdbe(pParse);
sl@0
   199
      if( v ){
sl@0
   200
        if( zRight==0 ){
sl@0
   201
          returnSingleInt(pParse, p->zName, (db->flags & p->mask)!=0 );
sl@0
   202
        }else{
sl@0
   203
          if( getBoolean(zRight) ){
sl@0
   204
            db->flags |= p->mask;
sl@0
   205
          }else{
sl@0
   206
            db->flags &= ~p->mask;
sl@0
   207
          }
sl@0
   208
sl@0
   209
          /* Many of the flag-pragmas modify the code generated by the SQL 
sl@0
   210
          ** compiler (eg. count_changes). So add an opcode to expire all
sl@0
   211
          ** compiled SQL statements after modifying a pragma value.
sl@0
   212
          */
sl@0
   213
          sqlite3VdbeAddOp2(v, OP_Expire, 0, 0);
sl@0
   214
        }
sl@0
   215
      }
sl@0
   216
sl@0
   217
      return 1;
sl@0
   218
    }
sl@0
   219
  }
sl@0
   220
  return 0;
sl@0
   221
}
sl@0
   222
#endif /* SQLITE_OMIT_FLAG_PRAGMAS */
sl@0
   223
sl@0
   224
static const char *actionName(u8 action){
sl@0
   225
  switch( action ){
sl@0
   226
    case OE_SetNull:  return "SET NULL";
sl@0
   227
    case OE_SetDflt:  return "SET DEFAULT";
sl@0
   228
    case OE_Restrict: return "RESTRICT";
sl@0
   229
    case OE_Cascade:  return "CASCADE";
sl@0
   230
  }
sl@0
   231
  return "";
sl@0
   232
}
sl@0
   233
sl@0
   234
/*
sl@0
   235
** Process a pragma statement.  
sl@0
   236
**
sl@0
   237
** Pragmas are of this form:
sl@0
   238
**
sl@0
   239
**      PRAGMA [database.]id [= value]
sl@0
   240
**
sl@0
   241
** The identifier might also be a string.  The value is a string, and
sl@0
   242
** identifier, or a number.  If minusFlag is true, then the value is
sl@0
   243
** a number that was preceded by a minus sign.
sl@0
   244
**
sl@0
   245
** If the left side is "database.id" then pId1 is the database name
sl@0
   246
** and pId2 is the id.  If the left side is just "id" then pId1 is the
sl@0
   247
** id and pId2 is any empty string.
sl@0
   248
*/
sl@0
   249
void sqlite3Pragma(
sl@0
   250
  Parse *pParse, 
sl@0
   251
  Token *pId1,        /* First part of [database.]id field */
sl@0
   252
  Token *pId2,        /* Second part of [database.]id field, or NULL */
sl@0
   253
  Token *pValue,      /* Token for <value>, or NULL */
sl@0
   254
  int minusFlag       /* True if a '-' sign preceded <value> */
sl@0
   255
){
sl@0
   256
  char *zLeft = 0;       /* Nul-terminated UTF-8 string <id> */
sl@0
   257
  char *zRight = 0;      /* Nul-terminated UTF-8 string <value>, or NULL */
sl@0
   258
  const char *zDb = 0;   /* The database name */
sl@0
   259
  Token *pId;            /* Pointer to <id> token */
sl@0
   260
  int iDb;               /* Database index for <database> */
sl@0
   261
  sqlite3 *db = pParse->db;
sl@0
   262
  Db *pDb;
sl@0
   263
  Vdbe *v = pParse->pVdbe = sqlite3VdbeCreate(db);
sl@0
   264
  if( v==0 ) return;
sl@0
   265
  pParse->nMem = 2;
sl@0
   266
sl@0
   267
  /* Interpret the [database.] part of the pragma statement. iDb is the
sl@0
   268
  ** index of the database this pragma is being applied to in db.aDb[]. */
sl@0
   269
  iDb = sqlite3TwoPartName(pParse, pId1, pId2, &pId);
sl@0
   270
  if( iDb<0 ) return;
sl@0
   271
  pDb = &db->aDb[iDb];
sl@0
   272
sl@0
   273
  /* If the temp database has been explicitly named as part of the 
sl@0
   274
  ** pragma, make sure it is open. 
sl@0
   275
  */
sl@0
   276
  if( iDb==1 && sqlite3OpenTempDatabase(pParse) ){
sl@0
   277
    return;
sl@0
   278
  }
sl@0
   279
sl@0
   280
  zLeft = sqlite3NameFromToken(db, pId);
sl@0
   281
  if( !zLeft ) return;
sl@0
   282
  if( minusFlag ){
sl@0
   283
    zRight = sqlite3MPrintf(db, "-%T", pValue);
sl@0
   284
  }else{
sl@0
   285
    zRight = sqlite3NameFromToken(db, pValue);
sl@0
   286
  }
sl@0
   287
sl@0
   288
  zDb = ((pId2 && pId2->n>0)?pDb->zName:0);
sl@0
   289
  if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
sl@0
   290
    goto pragma_out;
sl@0
   291
  }
sl@0
   292
 
sl@0
   293
#ifndef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
   294
  /*
sl@0
   295
  **  PRAGMA [database.]default_cache_size
sl@0
   296
  **  PRAGMA [database.]default_cache_size=N
sl@0
   297
  **
sl@0
   298
  ** The first form reports the current persistent setting for the
sl@0
   299
  ** page cache size.  The value returned is the maximum number of
sl@0
   300
  ** pages in the page cache.  The second form sets both the current
sl@0
   301
  ** page cache size value and the persistent page cache size value
sl@0
   302
  ** stored in the database file.
sl@0
   303
  **
sl@0
   304
  ** The default cache size is stored in meta-value 2 of page 1 of the
sl@0
   305
  ** database file.  The cache size is actually the absolute value of
sl@0
   306
  ** this memory location.  The sign of meta-value 2 determines the
sl@0
   307
  ** synchronous setting.  A negative value means synchronous is off
sl@0
   308
  ** and a positive value means synchronous is on.
sl@0
   309
  */
sl@0
   310
  if( sqlite3StrICmp(zLeft,"default_cache_size")==0 ){
sl@0
   311
    static const VdbeOpList getCacheSize[] = {
sl@0
   312
      { OP_ReadCookie,  0, 1,        2},  /* 0 */
sl@0
   313
      { OP_IfPos,       1, 6,        0},
sl@0
   314
      { OP_Integer,     0, 2,        0},
sl@0
   315
      { OP_Subtract,    1, 2,        1},
sl@0
   316
      { OP_IfPos,       1, 6,        0},
sl@0
   317
      { OP_Integer,     0, 1,        0},  /* 5 */
sl@0
   318
      { OP_ResultRow,   1, 1,        0},
sl@0
   319
    };
sl@0
   320
    int addr;
sl@0
   321
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   322
    sqlite3VdbeUsesBtree(v, iDb);
sl@0
   323
    if( !zRight ){
sl@0
   324
      sqlite3VdbeSetNumCols(v, 1);
sl@0
   325
      sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "cache_size", P4_STATIC);
sl@0
   326
      pParse->nMem += 2;
sl@0
   327
      addr = sqlite3VdbeAddOpList(v, ArraySize(getCacheSize), getCacheSize);
sl@0
   328
      sqlite3VdbeChangeP1(v, addr, iDb);
sl@0
   329
      sqlite3VdbeChangeP1(v, addr+5, SQLITE_DEFAULT_CACHE_SIZE);
sl@0
   330
    }else{
sl@0
   331
      int size = atoi(zRight);
sl@0
   332
      if( size<0 ) size = -size;
sl@0
   333
      sqlite3BeginWriteOperation(pParse, 0, iDb);
sl@0
   334
      sqlite3VdbeAddOp2(v, OP_Integer, size, 1);
sl@0
   335
      sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, 2, 2);
sl@0
   336
      addr = sqlite3VdbeAddOp2(v, OP_IfPos, 2, 0);
sl@0
   337
      sqlite3VdbeAddOp2(v, OP_Integer, -size, 1);
sl@0
   338
      sqlite3VdbeJumpHere(v, addr);
sl@0
   339
      sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, 2, 1);
sl@0
   340
      pDb->pSchema->cache_size = size;
sl@0
   341
      sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
sl@0
   342
    }
sl@0
   343
  }else
sl@0
   344
sl@0
   345
  /*
sl@0
   346
  **  PRAGMA [database.]page_size
sl@0
   347
  **  PRAGMA [database.]page_size=N
sl@0
   348
  **
sl@0
   349
  ** The first form reports the current setting for the
sl@0
   350
  ** database page size in bytes.  The second form sets the
sl@0
   351
  ** database page size value.  The value can only be set if
sl@0
   352
  ** the database has not yet been created.
sl@0
   353
  */
sl@0
   354
  if( sqlite3StrICmp(zLeft,"page_size")==0 ){
sl@0
   355
    Btree *pBt = pDb->pBt;
sl@0
   356
    if( !zRight ){
sl@0
   357
      int size = pBt ? sqlite3BtreeGetPageSize(pBt) : 0;
sl@0
   358
      returnSingleInt(pParse, "page_size", size);
sl@0
   359
    }else{
sl@0
   360
      /* Malloc may fail when setting the page-size, as there is an internal
sl@0
   361
      ** buffer that the pager module resizes using sqlite3_realloc().
sl@0
   362
      */
sl@0
   363
      db->nextPagesize = atoi(zRight);
sl@0
   364
      if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize, -1) ){
sl@0
   365
        db->mallocFailed = 1;
sl@0
   366
      }
sl@0
   367
    }
sl@0
   368
  }else
sl@0
   369
sl@0
   370
  /*
sl@0
   371
  **  PRAGMA [database.]max_page_count
sl@0
   372
  **  PRAGMA [database.]max_page_count=N
sl@0
   373
  **
sl@0
   374
  ** The first form reports the current setting for the
sl@0
   375
  ** maximum number of pages in the database file.  The 
sl@0
   376
  ** second form attempts to change this setting.  Both
sl@0
   377
  ** forms return the current setting.
sl@0
   378
  */
sl@0
   379
  if( sqlite3StrICmp(zLeft,"max_page_count")==0 ){
sl@0
   380
    Btree *pBt = pDb->pBt;
sl@0
   381
    int newMax = 0;
sl@0
   382
    if( zRight ){
sl@0
   383
      newMax = atoi(zRight);
sl@0
   384
    }
sl@0
   385
    if( pBt ){
sl@0
   386
      newMax = sqlite3BtreeMaxPageCount(pBt, newMax);
sl@0
   387
    }
sl@0
   388
    returnSingleInt(pParse, "max_page_count", newMax);
sl@0
   389
  }else
sl@0
   390
sl@0
   391
  /*
sl@0
   392
  **  PRAGMA [database.]page_count
sl@0
   393
  **
sl@0
   394
  ** Return the number of pages in the specified database.
sl@0
   395
  */
sl@0
   396
  if( sqlite3StrICmp(zLeft,"page_count")==0 ){
sl@0
   397
    Vdbe *v;
sl@0
   398
    int iReg;
sl@0
   399
    v = sqlite3GetVdbe(pParse);
sl@0
   400
    if( !v || sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   401
    sqlite3CodeVerifySchema(pParse, iDb);
sl@0
   402
    iReg = ++pParse->nMem;
sl@0
   403
    sqlite3VdbeAddOp2(v, OP_Pagecount, iDb, iReg);
sl@0
   404
    sqlite3VdbeAddOp2(v, OP_ResultRow, iReg, 1);
sl@0
   405
    sqlite3VdbeSetNumCols(v, 1);
sl@0
   406
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "page_count", P4_STATIC);
sl@0
   407
  }else
sl@0
   408
sl@0
   409
  /*
sl@0
   410
  **  PRAGMA [database.]locking_mode
sl@0
   411
  **  PRAGMA [database.]locking_mode = (normal|exclusive)
sl@0
   412
  */
sl@0
   413
  if( sqlite3StrICmp(zLeft,"locking_mode")==0 ){
sl@0
   414
    const char *zRet = "normal";
sl@0
   415
    int eMode = getLockingMode(zRight);
sl@0
   416
sl@0
   417
    if( pId2->n==0 && eMode==PAGER_LOCKINGMODE_QUERY ){
sl@0
   418
      /* Simple "PRAGMA locking_mode;" statement. This is a query for
sl@0
   419
      ** the current default locking mode (which may be different to
sl@0
   420
      ** the locking-mode of the main database).
sl@0
   421
      */
sl@0
   422
      eMode = db->dfltLockMode;
sl@0
   423
    }else{
sl@0
   424
      Pager *pPager;
sl@0
   425
      if( pId2->n==0 ){
sl@0
   426
        /* This indicates that no database name was specified as part
sl@0
   427
        ** of the PRAGMA command. In this case the locking-mode must be
sl@0
   428
        ** set on all attached databases, as well as the main db file.
sl@0
   429
        **
sl@0
   430
        ** Also, the sqlite3.dfltLockMode variable is set so that
sl@0
   431
        ** any subsequently attached databases also use the specified
sl@0
   432
        ** locking mode.
sl@0
   433
        */
sl@0
   434
        int ii;
sl@0
   435
        assert(pDb==&db->aDb[0]);
sl@0
   436
        for(ii=2; ii<db->nDb; ii++){
sl@0
   437
          pPager = sqlite3BtreePager(db->aDb[ii].pBt);
sl@0
   438
          sqlite3PagerLockingMode(pPager, eMode);
sl@0
   439
        }
sl@0
   440
        db->dfltLockMode = eMode;
sl@0
   441
      }
sl@0
   442
      pPager = sqlite3BtreePager(pDb->pBt);
sl@0
   443
      eMode = sqlite3PagerLockingMode(pPager, eMode);
sl@0
   444
    }
sl@0
   445
sl@0
   446
    assert(eMode==PAGER_LOCKINGMODE_NORMAL||eMode==PAGER_LOCKINGMODE_EXCLUSIVE);
sl@0
   447
    if( eMode==PAGER_LOCKINGMODE_EXCLUSIVE ){
sl@0
   448
      zRet = "exclusive";
sl@0
   449
    }
sl@0
   450
    sqlite3VdbeSetNumCols(v, 1);
sl@0
   451
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "locking_mode", P4_STATIC);
sl@0
   452
    sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, zRet, 0);
sl@0
   453
    sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1);
sl@0
   454
  }else
sl@0
   455
sl@0
   456
  /*
sl@0
   457
  **  PRAGMA [database.]journal_mode
sl@0
   458
  **  PRAGMA [database.]journal_mode = (delete|persist|off)
sl@0
   459
  */
sl@0
   460
  if( sqlite3StrICmp(zLeft,"journal_mode")==0 ){
sl@0
   461
    int eMode;
sl@0
   462
    static char * const azModeName[] = {"delete", "persist", "off", "truncate"};
sl@0
   463
sl@0
   464
    if( zRight==0 ){
sl@0
   465
      eMode = PAGER_JOURNALMODE_QUERY;
sl@0
   466
    }else{
sl@0
   467
      int n = strlen(zRight);
sl@0
   468
      eMode = sizeof(azModeName)/sizeof(azModeName[0]) - 1;
sl@0
   469
      while( eMode>=0 && sqlite3StrNICmp(zRight, azModeName[eMode], n)!=0 ){
sl@0
   470
        eMode--;
sl@0
   471
      }
sl@0
   472
    }
sl@0
   473
    if( pId2->n==0 && eMode==PAGER_JOURNALMODE_QUERY ){
sl@0
   474
      /* Simple "PRAGMA journal_mode;" statement. This is a query for
sl@0
   475
      ** the current default journal mode (which may be different to
sl@0
   476
      ** the journal-mode of the main database).
sl@0
   477
      */
sl@0
   478
      eMode = db->dfltJournalMode;
sl@0
   479
    }else{
sl@0
   480
      Pager *pPager;
sl@0
   481
      if( pId2->n==0 ){
sl@0
   482
        /* This indicates that no database name was specified as part
sl@0
   483
        ** of the PRAGMA command. In this case the journal-mode must be
sl@0
   484
        ** set on all attached databases, as well as the main db file.
sl@0
   485
        **
sl@0
   486
        ** Also, the sqlite3.dfltJournalMode variable is set so that
sl@0
   487
        ** any subsequently attached databases also use the specified
sl@0
   488
        ** journal mode.
sl@0
   489
        */
sl@0
   490
        int ii;
sl@0
   491
        assert(pDb==&db->aDb[0]);
sl@0
   492
        for(ii=1; ii<db->nDb; ii++){
sl@0
   493
          if( db->aDb[ii].pBt ){
sl@0
   494
            pPager = sqlite3BtreePager(db->aDb[ii].pBt);
sl@0
   495
            sqlite3PagerJournalMode(pPager, eMode);
sl@0
   496
          }
sl@0
   497
        }
sl@0
   498
        db->dfltJournalMode = eMode;
sl@0
   499
      }
sl@0
   500
      pPager = sqlite3BtreePager(pDb->pBt);
sl@0
   501
      eMode = sqlite3PagerJournalMode(pPager, eMode);
sl@0
   502
    }
sl@0
   503
    assert( eMode==PAGER_JOURNALMODE_DELETE
sl@0
   504
              || eMode==PAGER_JOURNALMODE_TRUNCATE
sl@0
   505
              || eMode==PAGER_JOURNALMODE_PERSIST
sl@0
   506
              || eMode==PAGER_JOURNALMODE_OFF );
sl@0
   507
    sqlite3VdbeSetNumCols(v, 1);
sl@0
   508
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "journal_mode", P4_STATIC);
sl@0
   509
    sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, 
sl@0
   510
           azModeName[eMode], P4_STATIC);
sl@0
   511
    sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1);
sl@0
   512
  }else
sl@0
   513
sl@0
   514
  /*
sl@0
   515
  **  PRAGMA [database.]journal_size_limit
sl@0
   516
  **  PRAGMA [database.]journal_size_limit=N
sl@0
   517
  **
sl@0
   518
  ** Get or set the (boolean) value of the database 'auto-vacuum' parameter.
sl@0
   519
  */
sl@0
   520
  if( sqlite3StrICmp(zLeft,"journal_size_limit")==0 ){
sl@0
   521
    Pager *pPager = sqlite3BtreePager(pDb->pBt);
sl@0
   522
    i64 iLimit = -2;
sl@0
   523
    if( zRight ){
sl@0
   524
      int iLimit32 = atoi(zRight);
sl@0
   525
      if( iLimit32<-1 ){
sl@0
   526
        iLimit32 = -1;
sl@0
   527
      }
sl@0
   528
      iLimit = iLimit32;
sl@0
   529
    }
sl@0
   530
    iLimit = sqlite3PagerJournalSizeLimit(pPager, iLimit);
sl@0
   531
    returnSingleInt(pParse, "journal_size_limit", (int)iLimit);
sl@0
   532
  }else
sl@0
   533
sl@0
   534
#endif /* SQLITE_OMIT_PAGER_PRAGMAS */
sl@0
   535
sl@0
   536
  /*
sl@0
   537
  **  PRAGMA [database.]auto_vacuum
sl@0
   538
  **  PRAGMA [database.]auto_vacuum=N
sl@0
   539
  **
sl@0
   540
  ** Get or set the (boolean) value of the database 'auto-vacuum' parameter.
sl@0
   541
  */
sl@0
   542
#ifndef SQLITE_OMIT_AUTOVACUUM
sl@0
   543
  if( sqlite3StrICmp(zLeft,"auto_vacuum")==0 ){
sl@0
   544
    Btree *pBt = pDb->pBt;
sl@0
   545
    if( sqlite3ReadSchema(pParse) ){
sl@0
   546
      goto pragma_out;
sl@0
   547
    }
sl@0
   548
    if( !zRight ){
sl@0
   549
      int auto_vacuum = 
sl@0
   550
          pBt ? sqlite3BtreeGetAutoVacuum(pBt) : SQLITE_DEFAULT_AUTOVACUUM;
sl@0
   551
      returnSingleInt(pParse, "auto_vacuum", auto_vacuum);
sl@0
   552
    }else{
sl@0
   553
      int eAuto = getAutoVacuum(zRight);
sl@0
   554
      db->nextAutovac = eAuto;
sl@0
   555
      if( eAuto>=0 ){
sl@0
   556
        /* Call SetAutoVacuum() to set initialize the internal auto and
sl@0
   557
        ** incr-vacuum flags. This is required in case this connection
sl@0
   558
        ** creates the database file. It is important that it is created
sl@0
   559
        ** as an auto-vacuum capable db.
sl@0
   560
        */
sl@0
   561
        int rc = sqlite3BtreeSetAutoVacuum(pBt, eAuto);
sl@0
   562
        if( rc==SQLITE_OK && (eAuto==1 || eAuto==2) ){
sl@0
   563
          /* When setting the auto_vacuum mode to either "full" or 
sl@0
   564
          ** "incremental", write the value of meta[6] in the database
sl@0
   565
          ** file. Before writing to meta[6], check that meta[3] indicates
sl@0
   566
          ** that this really is an auto-vacuum capable database.
sl@0
   567
          */
sl@0
   568
          static const VdbeOpList setMeta6[] = {
sl@0
   569
            { OP_Transaction,    0,               1,        0},    /* 0 */
sl@0
   570
            { OP_ReadCookie,     0,               1,        3},    /* 1 */
sl@0
   571
            { OP_If,             1,               0,        0},    /* 2 */
sl@0
   572
            { OP_Halt,           SQLITE_OK,       OE_Abort, 0},    /* 3 */
sl@0
   573
            { OP_Integer,        0,               1,        0},    /* 4 */
sl@0
   574
            { OP_SetCookie,      0,               6,        1},    /* 5 */
sl@0
   575
          };
sl@0
   576
          int iAddr;
sl@0
   577
          iAddr = sqlite3VdbeAddOpList(v, ArraySize(setMeta6), setMeta6);
sl@0
   578
          sqlite3VdbeChangeP1(v, iAddr, iDb);
sl@0
   579
          sqlite3VdbeChangeP1(v, iAddr+1, iDb);
sl@0
   580
          sqlite3VdbeChangeP2(v, iAddr+2, iAddr+4);
sl@0
   581
          sqlite3VdbeChangeP1(v, iAddr+4, eAuto-1);
sl@0
   582
          sqlite3VdbeChangeP1(v, iAddr+5, iDb);
sl@0
   583
          sqlite3VdbeUsesBtree(v, iDb);
sl@0
   584
        }
sl@0
   585
      }
sl@0
   586
    }
sl@0
   587
  }else
sl@0
   588
#endif
sl@0
   589
sl@0
   590
  /*
sl@0
   591
  **  PRAGMA [database.]incremental_vacuum(N)
sl@0
   592
  **
sl@0
   593
  ** Do N steps of incremental vacuuming on a database.
sl@0
   594
  */
sl@0
   595
#ifndef SQLITE_OMIT_AUTOVACUUM
sl@0
   596
  if( sqlite3StrICmp(zLeft,"incremental_vacuum")==0 ){
sl@0
   597
    int iLimit, addr;
sl@0
   598
    if( sqlite3ReadSchema(pParse) ){
sl@0
   599
      goto pragma_out;
sl@0
   600
    }
sl@0
   601
    if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
sl@0
   602
      iLimit = 0x7fffffff;
sl@0
   603
    }
sl@0
   604
    sqlite3BeginWriteOperation(pParse, 0, iDb);
sl@0
   605
    sqlite3VdbeAddOp2(v, OP_Integer, iLimit, 1);
sl@0
   606
    addr = sqlite3VdbeAddOp1(v, OP_IncrVacuum, iDb);
sl@0
   607
    sqlite3VdbeAddOp1(v, OP_ResultRow, 1);
sl@0
   608
    sqlite3VdbeAddOp2(v, OP_AddImm, 1, -1);
sl@0
   609
    sqlite3VdbeAddOp2(v, OP_IfPos, 1, addr);
sl@0
   610
    sqlite3VdbeJumpHere(v, addr);
sl@0
   611
  }else
sl@0
   612
#endif
sl@0
   613
sl@0
   614
#ifndef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
   615
  /*
sl@0
   616
  **  PRAGMA [database.]cache_size
sl@0
   617
  **  PRAGMA [database.]cache_size=N
sl@0
   618
  **
sl@0
   619
  ** The first form reports the current local setting for the
sl@0
   620
  ** page cache size.  The local setting can be different from
sl@0
   621
  ** the persistent cache size value that is stored in the database
sl@0
   622
  ** file itself.  The value returned is the maximum number of
sl@0
   623
  ** pages in the page cache.  The second form sets the local
sl@0
   624
  ** page cache size value.  It does not change the persistent
sl@0
   625
  ** cache size stored on the disk so the cache size will revert
sl@0
   626
  ** to its default value when the database is closed and reopened.
sl@0
   627
  ** N should be a positive integer.
sl@0
   628
  */
sl@0
   629
  if( sqlite3StrICmp(zLeft,"cache_size")==0 ){
sl@0
   630
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   631
    if( !zRight ){
sl@0
   632
      returnSingleInt(pParse, "cache_size", pDb->pSchema->cache_size);
sl@0
   633
    }else{
sl@0
   634
      int size = atoi(zRight);
sl@0
   635
      if( size<0 ) size = -size;
sl@0
   636
      pDb->pSchema->cache_size = size;
sl@0
   637
      sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
sl@0
   638
    }
sl@0
   639
  }else
sl@0
   640
sl@0
   641
  /*
sl@0
   642
  **   PRAGMA temp_store
sl@0
   643
  **   PRAGMA temp_store = "default"|"memory"|"file"
sl@0
   644
  **
sl@0
   645
  ** Return or set the local value of the temp_store flag.  Changing
sl@0
   646
  ** the local value does not make changes to the disk file and the default
sl@0
   647
  ** value will be restored the next time the database is opened.
sl@0
   648
  **
sl@0
   649
  ** Note that it is possible for the library compile-time options to
sl@0
   650
  ** override this setting
sl@0
   651
  */
sl@0
   652
  if( sqlite3StrICmp(zLeft, "temp_store")==0 ){
sl@0
   653
    if( !zRight ){
sl@0
   654
      returnSingleInt(pParse, "temp_store", db->temp_store);
sl@0
   655
    }else{
sl@0
   656
      changeTempStorage(pParse, zRight);
sl@0
   657
    }
sl@0
   658
  }else
sl@0
   659
sl@0
   660
  /*
sl@0
   661
  **   PRAGMA temp_store_directory
sl@0
   662
  **   PRAGMA temp_store_directory = ""|"directory_name"
sl@0
   663
  **
sl@0
   664
  ** Return or set the local value of the temp_store_directory flag.  Changing
sl@0
   665
  ** the value sets a specific directory to be used for temporary files.
sl@0
   666
  ** Setting to a null string reverts to the default temporary directory search.
sl@0
   667
  ** If temporary directory is changed, then invalidateTempStorage.
sl@0
   668
  **
sl@0
   669
  */
sl@0
   670
  if( sqlite3StrICmp(zLeft, "temp_store_directory")==0 ){
sl@0
   671
    if( !zRight ){
sl@0
   672
      if( sqlite3_temp_directory ){
sl@0
   673
        sqlite3VdbeSetNumCols(v, 1);
sl@0
   674
        sqlite3VdbeSetColName(v, 0, COLNAME_NAME, 
sl@0
   675
            "temp_store_directory", P4_STATIC);
sl@0
   676
        sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, sqlite3_temp_directory, 0);
sl@0
   677
        sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1);
sl@0
   678
      }
sl@0
   679
    }else{
sl@0
   680
#ifndef SQLITE_OMIT_WSD
sl@0
   681
      if( zRight[0] ){
sl@0
   682
        int rc;
sl@0
   683
        int res;
sl@0
   684
        rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
sl@0
   685
        if( rc!=SQLITE_OK || res==0 ){
sl@0
   686
          sqlite3ErrorMsg(pParse, "not a writable directory");
sl@0
   687
          goto pragma_out;
sl@0
   688
        }
sl@0
   689
      }
sl@0
   690
      if( SQLITE_TEMP_STORE==0
sl@0
   691
       || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
sl@0
   692
       || (SQLITE_TEMP_STORE==2 && db->temp_store==1)
sl@0
   693
      ){
sl@0
   694
        invalidateTempStorage(pParse);
sl@0
   695
      }
sl@0
   696
      sqlite3_free(sqlite3_temp_directory);
sl@0
   697
      if( zRight[0] ){
sl@0
   698
        sqlite3_temp_directory = sqlite3DbStrDup(0, zRight);
sl@0
   699
      }else{
sl@0
   700
        sqlite3_temp_directory = 0;
sl@0
   701
      }
sl@0
   702
#endif /* SQLITE_OMIT_WSD */
sl@0
   703
    }
sl@0
   704
  }else
sl@0
   705
sl@0
   706
  /*
sl@0
   707
  **   PRAGMA [database.]synchronous
sl@0
   708
  **   PRAGMA [database.]synchronous=OFF|ON|NORMAL|FULL
sl@0
   709
  **
sl@0
   710
  ** Return or set the local value of the synchronous flag.  Changing
sl@0
   711
  ** the local value does not make changes to the disk file and the
sl@0
   712
  ** default value will be restored the next time the database is
sl@0
   713
  ** opened.
sl@0
   714
  */
sl@0
   715
  if( sqlite3StrICmp(zLeft,"synchronous")==0 ){
sl@0
   716
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   717
    if( !zRight ){
sl@0
   718
      returnSingleInt(pParse, "synchronous", pDb->safety_level-1);
sl@0
   719
    }else{
sl@0
   720
      if( !db->autoCommit ){
sl@0
   721
        sqlite3ErrorMsg(pParse, 
sl@0
   722
            "Safety level may not be changed inside a transaction");
sl@0
   723
      }else{
sl@0
   724
        pDb->safety_level = getSafetyLevel(zRight)+1;
sl@0
   725
      }
sl@0
   726
    }
sl@0
   727
  }else
sl@0
   728
#endif /* SQLITE_OMIT_PAGER_PRAGMAS */
sl@0
   729
sl@0
   730
#ifndef SQLITE_OMIT_FLAG_PRAGMAS
sl@0
   731
  if( flagPragma(pParse, zLeft, zRight) ){
sl@0
   732
    /* The flagPragma() subroutine also generates any necessary code
sl@0
   733
    ** there is nothing more to do here */
sl@0
   734
  }else
sl@0
   735
#endif /* SQLITE_OMIT_FLAG_PRAGMAS */
sl@0
   736
sl@0
   737
#ifndef SQLITE_OMIT_SCHEMA_PRAGMAS
sl@0
   738
  /*
sl@0
   739
  **   PRAGMA table_info(<table>)
sl@0
   740
  **
sl@0
   741
  ** Return a single row for each column of the named table. The columns of
sl@0
   742
  ** the returned data set are:
sl@0
   743
  **
sl@0
   744
  ** cid:        Column id (numbered from left to right, starting at 0)
sl@0
   745
  ** name:       Column name
sl@0
   746
  ** type:       Column declaration type.
sl@0
   747
  ** notnull:    True if 'NOT NULL' is part of column declaration
sl@0
   748
  ** dflt_value: The default value for the column, if any.
sl@0
   749
  */
sl@0
   750
  if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
sl@0
   751
    Table *pTab;
sl@0
   752
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   753
    pTab = sqlite3FindTable(db, zRight, zDb);
sl@0
   754
    if( pTab ){
sl@0
   755
      int i;
sl@0
   756
      int nHidden = 0;
sl@0
   757
      Column *pCol;
sl@0
   758
      sqlite3VdbeSetNumCols(v, 6);
sl@0
   759
      pParse->nMem = 6;
sl@0
   760
      sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "cid", P4_STATIC);
sl@0
   761
      sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", P4_STATIC);
sl@0
   762
      sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "type", P4_STATIC);
sl@0
   763
      sqlite3VdbeSetColName(v, 3, COLNAME_NAME, "notnull", P4_STATIC);
sl@0
   764
      sqlite3VdbeSetColName(v, 4, COLNAME_NAME, "dflt_value", P4_STATIC);
sl@0
   765
      sqlite3VdbeSetColName(v, 5, COLNAME_NAME, "pk", P4_STATIC);
sl@0
   766
      sqlite3ViewGetColumnNames(pParse, pTab);
sl@0
   767
      for(i=0, pCol=pTab->aCol; i<pTab->nCol; i++, pCol++){
sl@0
   768
        const Token *pDflt;
sl@0
   769
        if( IsHiddenColumn(pCol) ){
sl@0
   770
          nHidden++;
sl@0
   771
          continue;
sl@0
   772
        }
sl@0
   773
        sqlite3VdbeAddOp2(v, OP_Integer, i-nHidden, 1);
sl@0
   774
        sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pCol->zName, 0);
sl@0
   775
        sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0,
sl@0
   776
           pCol->zType ? pCol->zType : "", 0);
sl@0
   777
        sqlite3VdbeAddOp2(v, OP_Integer, pCol->notNull, 4);
sl@0
   778
        if( pCol->pDflt && (pDflt = &pCol->pDflt->span)->z ){
sl@0
   779
          sqlite3VdbeAddOp4(v, OP_String8, 0, 5, 0, (char*)pDflt->z, pDflt->n);
sl@0
   780
        }else{
sl@0
   781
          sqlite3VdbeAddOp2(v, OP_Null, 0, 5);
sl@0
   782
        }
sl@0
   783
        sqlite3VdbeAddOp2(v, OP_Integer, pCol->isPrimKey, 6);
sl@0
   784
        sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 6);
sl@0
   785
      }
sl@0
   786
    }
sl@0
   787
  }else
sl@0
   788
sl@0
   789
  if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
sl@0
   790
    Index *pIdx;
sl@0
   791
    Table *pTab;
sl@0
   792
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   793
    pIdx = sqlite3FindIndex(db, zRight, zDb);
sl@0
   794
    if( pIdx ){
sl@0
   795
      int i;
sl@0
   796
      pTab = pIdx->pTable;
sl@0
   797
      sqlite3VdbeSetNumCols(v, 3);
sl@0
   798
      pParse->nMem = 3;
sl@0
   799
      sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seqno", P4_STATIC);
sl@0
   800
      sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "cid", P4_STATIC);
sl@0
   801
      sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "name", P4_STATIC);
sl@0
   802
      for(i=0; i<pIdx->nColumn; i++){
sl@0
   803
        int cnum = pIdx->aiColumn[i];
sl@0
   804
        sqlite3VdbeAddOp2(v, OP_Integer, i, 1);
sl@0
   805
        sqlite3VdbeAddOp2(v, OP_Integer, cnum, 2);
sl@0
   806
        assert( pTab->nCol>cnum );
sl@0
   807
        sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, pTab->aCol[cnum].zName, 0);
sl@0
   808
        sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3);
sl@0
   809
      }
sl@0
   810
    }
sl@0
   811
  }else
sl@0
   812
sl@0
   813
  if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
sl@0
   814
    Index *pIdx;
sl@0
   815
    Table *pTab;
sl@0
   816
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   817
    pTab = sqlite3FindTable(db, zRight, zDb);
sl@0
   818
    if( pTab ){
sl@0
   819
      v = sqlite3GetVdbe(pParse);
sl@0
   820
      pIdx = pTab->pIndex;
sl@0
   821
      if( pIdx ){
sl@0
   822
        int i = 0; 
sl@0
   823
        sqlite3VdbeSetNumCols(v, 3);
sl@0
   824
        pParse->nMem = 3;
sl@0
   825
        sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seq", P4_STATIC);
sl@0
   826
        sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", P4_STATIC);
sl@0
   827
        sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "unique", P4_STATIC);
sl@0
   828
        while(pIdx){
sl@0
   829
          sqlite3VdbeAddOp2(v, OP_Integer, i, 1);
sl@0
   830
          sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pIdx->zName, 0);
sl@0
   831
          sqlite3VdbeAddOp2(v, OP_Integer, pIdx->onError!=OE_None, 3);
sl@0
   832
          sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3);
sl@0
   833
          ++i;
sl@0
   834
          pIdx = pIdx->pNext;
sl@0
   835
        }
sl@0
   836
      }
sl@0
   837
    }
sl@0
   838
  }else
sl@0
   839
sl@0
   840
  if( sqlite3StrICmp(zLeft, "database_list")==0 ){
sl@0
   841
    int i;
sl@0
   842
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   843
    sqlite3VdbeSetNumCols(v, 3);
sl@0
   844
    pParse->nMem = 3;
sl@0
   845
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seq", P4_STATIC);
sl@0
   846
    sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", P4_STATIC);
sl@0
   847
    sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "file", P4_STATIC);
sl@0
   848
    for(i=0; i<db->nDb; i++){
sl@0
   849
      if( db->aDb[i].pBt==0 ) continue;
sl@0
   850
      assert( db->aDb[i].zName!=0 );
sl@0
   851
      sqlite3VdbeAddOp2(v, OP_Integer, i, 1);
sl@0
   852
      sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, db->aDb[i].zName, 0);
sl@0
   853
      sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0,
sl@0
   854
           sqlite3BtreeGetFilename(db->aDb[i].pBt), 0);
sl@0
   855
      sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3);
sl@0
   856
    }
sl@0
   857
  }else
sl@0
   858
sl@0
   859
  if( sqlite3StrICmp(zLeft, "collation_list")==0 ){
sl@0
   860
    int i = 0;
sl@0
   861
    HashElem *p;
sl@0
   862
    sqlite3VdbeSetNumCols(v, 2);
sl@0
   863
    pParse->nMem = 2;
sl@0
   864
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "seq", P4_STATIC);
sl@0
   865
    sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "name", P4_STATIC);
sl@0
   866
    for(p=sqliteHashFirst(&db->aCollSeq); p; p=sqliteHashNext(p)){
sl@0
   867
      CollSeq *pColl = (CollSeq *)sqliteHashData(p);
sl@0
   868
      sqlite3VdbeAddOp2(v, OP_Integer, i++, 1);
sl@0
   869
      sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pColl->zName, 0);
sl@0
   870
      sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 2);
sl@0
   871
    }
sl@0
   872
  }else
sl@0
   873
#endif /* SQLITE_OMIT_SCHEMA_PRAGMAS */
sl@0
   874
sl@0
   875
#ifndef SQLITE_OMIT_FOREIGN_KEY
sl@0
   876
  if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
sl@0
   877
    FKey *pFK;
sl@0
   878
    Table *pTab;
sl@0
   879
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   880
    pTab = sqlite3FindTable(db, zRight, zDb);
sl@0
   881
    if( pTab ){
sl@0
   882
      v = sqlite3GetVdbe(pParse);
sl@0
   883
      pFK = pTab->pFKey;
sl@0
   884
      if( pFK ){
sl@0
   885
        int i = 0; 
sl@0
   886
        sqlite3VdbeSetNumCols(v, 8);
sl@0
   887
        pParse->nMem = 8;
sl@0
   888
        sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "id", P4_STATIC);
sl@0
   889
        sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "seq", P4_STATIC);
sl@0
   890
        sqlite3VdbeSetColName(v, 2, COLNAME_NAME, "table", P4_STATIC);
sl@0
   891
        sqlite3VdbeSetColName(v, 3, COLNAME_NAME, "from", P4_STATIC);
sl@0
   892
        sqlite3VdbeSetColName(v, 4, COLNAME_NAME, "to", P4_STATIC);
sl@0
   893
        sqlite3VdbeSetColName(v, 5, COLNAME_NAME, "on_update", P4_STATIC);
sl@0
   894
        sqlite3VdbeSetColName(v, 6, COLNAME_NAME, "on_delete", P4_STATIC);
sl@0
   895
        sqlite3VdbeSetColName(v, 7, COLNAME_NAME, "match", P4_STATIC);
sl@0
   896
        while(pFK){
sl@0
   897
          int j;
sl@0
   898
          for(j=0; j<pFK->nCol; j++){
sl@0
   899
            char *zCol = pFK->aCol[j].zCol;
sl@0
   900
            char *zOnUpdate = (char *)actionName(pFK->updateConf);
sl@0
   901
            char *zOnDelete = (char *)actionName(pFK->deleteConf);
sl@0
   902
            sqlite3VdbeAddOp2(v, OP_Integer, i, 1);
sl@0
   903
            sqlite3VdbeAddOp2(v, OP_Integer, j, 2);
sl@0
   904
            sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, pFK->zTo, 0);
sl@0
   905
            sqlite3VdbeAddOp4(v, OP_String8, 0, 4, 0,
sl@0
   906
                              pTab->aCol[pFK->aCol[j].iFrom].zName, 0);
sl@0
   907
            sqlite3VdbeAddOp4(v, zCol ? OP_String8 : OP_Null, 0, 5, 0, zCol, 0);
sl@0
   908
            sqlite3VdbeAddOp4(v, OP_String8, 0, 6, 0, zOnUpdate, 0);
sl@0
   909
            sqlite3VdbeAddOp4(v, OP_String8, 0, 7, 0, zOnDelete, 0);
sl@0
   910
            sqlite3VdbeAddOp4(v, OP_String8, 0, 8, 0, "NONE", 0);
sl@0
   911
            sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 8);
sl@0
   912
          }
sl@0
   913
          ++i;
sl@0
   914
          pFK = pFK->pNextFrom;
sl@0
   915
        }
sl@0
   916
      }
sl@0
   917
    }
sl@0
   918
  }else
sl@0
   919
#endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */
sl@0
   920
sl@0
   921
#ifndef NDEBUG
sl@0
   922
  if( sqlite3StrICmp(zLeft, "parser_trace")==0 ){
sl@0
   923
    if( zRight ){
sl@0
   924
      if( getBoolean(zRight) ){
sl@0
   925
        sqlite3ParserTrace(stderr, "parser: ");
sl@0
   926
      }else{
sl@0
   927
        sqlite3ParserTrace(0, 0);
sl@0
   928
      }
sl@0
   929
    }
sl@0
   930
  }else
sl@0
   931
#endif
sl@0
   932
sl@0
   933
  /* Reinstall the LIKE and GLOB functions.  The variant of LIKE
sl@0
   934
  ** used will be case sensitive or not depending on the RHS.
sl@0
   935
  */
sl@0
   936
  if( sqlite3StrICmp(zLeft, "case_sensitive_like")==0 ){
sl@0
   937
    if( zRight ){
sl@0
   938
      sqlite3RegisterLikeFunctions(db, getBoolean(zRight));
sl@0
   939
    }
sl@0
   940
  }else
sl@0
   941
sl@0
   942
#ifndef SQLITE_INTEGRITY_CHECK_ERROR_MAX
sl@0
   943
# define SQLITE_INTEGRITY_CHECK_ERROR_MAX 100
sl@0
   944
#endif
sl@0
   945
sl@0
   946
#ifndef SQLITE_OMIT_INTEGRITY_CHECK
sl@0
   947
  /* Pragma "quick_check" is an experimental reduced version of 
sl@0
   948
  ** integrity_check designed to detect most database corruption
sl@0
   949
  ** without most of the overhead of a full integrity-check.
sl@0
   950
  */
sl@0
   951
  if( sqlite3StrICmp(zLeft, "integrity_check")==0
sl@0
   952
   || sqlite3StrICmp(zLeft, "quick_check")==0 
sl@0
   953
  ){
sl@0
   954
    int i, j, addr, mxErr;
sl@0
   955
sl@0
   956
    /* Code that appears at the end of the integrity check.  If no error
sl@0
   957
    ** messages have been generated, output OK.  Otherwise output the
sl@0
   958
    ** error message
sl@0
   959
    */
sl@0
   960
    static const VdbeOpList endCode[] = {
sl@0
   961
      { OP_AddImm,      1, 0,        0},    /* 0 */
sl@0
   962
      { OP_IfNeg,       1, 0,        0},    /* 1 */
sl@0
   963
      { OP_String8,     0, 3,        0},    /* 2 */
sl@0
   964
      { OP_ResultRow,   3, 1,        0},
sl@0
   965
    };
sl@0
   966
sl@0
   967
    int isQuick = (zLeft[0]=='q');
sl@0
   968
sl@0
   969
    /* Initialize the VDBE program */
sl@0
   970
    if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
   971
    pParse->nMem = 6;
sl@0
   972
    sqlite3VdbeSetNumCols(v, 1);
sl@0
   973
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "integrity_check", P4_STATIC);
sl@0
   974
sl@0
   975
    /* Set the maximum error count */
sl@0
   976
    mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX;
sl@0
   977
    if( zRight ){
sl@0
   978
      mxErr = atoi(zRight);
sl@0
   979
      if( mxErr<=0 ){
sl@0
   980
        mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX;
sl@0
   981
      }
sl@0
   982
    }
sl@0
   983
    sqlite3VdbeAddOp2(v, OP_Integer, mxErr, 1);  /* reg[1] holds errors left */
sl@0
   984
sl@0
   985
    /* Do an integrity check on each database file */
sl@0
   986
    for(i=0; i<db->nDb; i++){
sl@0
   987
      HashElem *x;
sl@0
   988
      Hash *pTbls;
sl@0
   989
      int cnt = 0;
sl@0
   990
sl@0
   991
      if( OMIT_TEMPDB && i==1 ) continue;
sl@0
   992
sl@0
   993
      sqlite3CodeVerifySchema(pParse, i);
sl@0
   994
      addr = sqlite3VdbeAddOp1(v, OP_IfPos, 1); /* Halt if out of errors */
sl@0
   995
      sqlite3VdbeAddOp2(v, OP_Halt, 0, 0);
sl@0
   996
      sqlite3VdbeJumpHere(v, addr);
sl@0
   997
sl@0
   998
      /* Do an integrity check of the B-Tree
sl@0
   999
      **
sl@0
  1000
      ** Begin by filling registers 2, 3, ... with the root pages numbers
sl@0
  1001
      ** for all tables and indices in the database.
sl@0
  1002
      */
sl@0
  1003
      pTbls = &db->aDb[i].pSchema->tblHash;
sl@0
  1004
      for(x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){
sl@0
  1005
        Table *pTab = sqliteHashData(x);
sl@0
  1006
        Index *pIdx;
sl@0
  1007
        sqlite3VdbeAddOp2(v, OP_Integer, pTab->tnum, 2+cnt);
sl@0
  1008
        cnt++;
sl@0
  1009
        for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
sl@0
  1010
          sqlite3VdbeAddOp2(v, OP_Integer, pIdx->tnum, 2+cnt);
sl@0
  1011
          cnt++;
sl@0
  1012
        }
sl@0
  1013
      }
sl@0
  1014
      if( cnt==0 ) continue;
sl@0
  1015
sl@0
  1016
      /* Make sure sufficient number of registers have been allocated */
sl@0
  1017
      if( pParse->nMem < cnt+4 ){
sl@0
  1018
        pParse->nMem = cnt+4;
sl@0
  1019
      }
sl@0
  1020
sl@0
  1021
      /* Do the b-tree integrity checks */
sl@0
  1022
      sqlite3VdbeAddOp3(v, OP_IntegrityCk, 2, cnt, 1);
sl@0
  1023
      sqlite3VdbeChangeP5(v, i);
sl@0
  1024
      addr = sqlite3VdbeAddOp1(v, OP_IsNull, 2);
sl@0
  1025
      sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0,
sl@0
  1026
         sqlite3MPrintf(db, "*** in database %s ***\n", db->aDb[i].zName),
sl@0
  1027
         P4_DYNAMIC);
sl@0
  1028
      sqlite3VdbeAddOp3(v, OP_Move, 2, 4, 1);
sl@0
  1029
      sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 2);
sl@0
  1030
      sqlite3VdbeAddOp2(v, OP_ResultRow, 2, 1);
sl@0
  1031
      sqlite3VdbeJumpHere(v, addr);
sl@0
  1032
sl@0
  1033
      /* Make sure all the indices are constructed correctly.
sl@0
  1034
      */
sl@0
  1035
      for(x=sqliteHashFirst(pTbls); x && !isQuick; x=sqliteHashNext(x)){
sl@0
  1036
        Table *pTab = sqliteHashData(x);
sl@0
  1037
        Index *pIdx;
sl@0
  1038
        int loopTop;
sl@0
  1039
sl@0
  1040
        if( pTab->pIndex==0 ) continue;
sl@0
  1041
        addr = sqlite3VdbeAddOp1(v, OP_IfPos, 1);  /* Stop if out of errors */
sl@0
  1042
        sqlite3VdbeAddOp2(v, OP_Halt, 0, 0);
sl@0
  1043
        sqlite3VdbeJumpHere(v, addr);
sl@0
  1044
        sqlite3OpenTableAndIndices(pParse, pTab, 1, OP_OpenRead);
sl@0
  1045
        sqlite3VdbeAddOp2(v, OP_Integer, 0, 2);  /* reg(2) will count entries */
sl@0
  1046
        loopTop = sqlite3VdbeAddOp2(v, OP_Rewind, 1, 0);
sl@0
  1047
        sqlite3VdbeAddOp2(v, OP_AddImm, 2, 1);   /* increment entry count */
sl@0
  1048
        for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){
sl@0
  1049
          int jmp2;
sl@0
  1050
          static const VdbeOpList idxErr[] = {
sl@0
  1051
            { OP_AddImm,      1, -1,  0},
sl@0
  1052
            { OP_String8,     0,  3,  0},    /* 1 */
sl@0
  1053
            { OP_Rowid,       1,  4,  0},
sl@0
  1054
            { OP_String8,     0,  5,  0},    /* 3 */
sl@0
  1055
            { OP_String8,     0,  6,  0},    /* 4 */
sl@0
  1056
            { OP_Concat,      4,  3,  3},
sl@0
  1057
            { OP_Concat,      5,  3,  3},
sl@0
  1058
            { OP_Concat,      6,  3,  3},
sl@0
  1059
            { OP_ResultRow,   3,  1,  0},
sl@0
  1060
            { OP_IfPos,       1,  0,  0},    /* 9 */
sl@0
  1061
            { OP_Halt,        0,  0,  0},
sl@0
  1062
          };
sl@0
  1063
          sqlite3GenerateIndexKey(pParse, pIdx, 1, 3, 1);
sl@0
  1064
          jmp2 = sqlite3VdbeAddOp3(v, OP_Found, j+2, 0, 3);
sl@0
  1065
          addr = sqlite3VdbeAddOpList(v, ArraySize(idxErr), idxErr);
sl@0
  1066
          sqlite3VdbeChangeP4(v, addr+1, "rowid ", P4_STATIC);
sl@0
  1067
          sqlite3VdbeChangeP4(v, addr+3, " missing from index ", P4_STATIC);
sl@0
  1068
          sqlite3VdbeChangeP4(v, addr+4, pIdx->zName, P4_STATIC);
sl@0
  1069
          sqlite3VdbeJumpHere(v, addr+9);
sl@0
  1070
          sqlite3VdbeJumpHere(v, jmp2);
sl@0
  1071
        }
sl@0
  1072
        sqlite3VdbeAddOp2(v, OP_Next, 1, loopTop+1);
sl@0
  1073
        sqlite3VdbeJumpHere(v, loopTop);
sl@0
  1074
        for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){
sl@0
  1075
          static const VdbeOpList cntIdx[] = {
sl@0
  1076
             { OP_Integer,      0,  3,  0},
sl@0
  1077
             { OP_Rewind,       0,  0,  0},  /* 1 */
sl@0
  1078
             { OP_AddImm,       3,  1,  0},
sl@0
  1079
             { OP_Next,         0,  0,  0},  /* 3 */
sl@0
  1080
             { OP_Eq,           2,  0,  3},  /* 4 */
sl@0
  1081
             { OP_AddImm,       1, -1,  0},
sl@0
  1082
             { OP_String8,      0,  2,  0},  /* 6 */
sl@0
  1083
             { OP_String8,      0,  3,  0},  /* 7 */
sl@0
  1084
             { OP_Concat,       3,  2,  2},
sl@0
  1085
             { OP_ResultRow,    2,  1,  0},
sl@0
  1086
          };
sl@0
  1087
          if( pIdx->tnum==0 ) continue;
sl@0
  1088
          addr = sqlite3VdbeAddOp1(v, OP_IfPos, 1);
sl@0
  1089
          sqlite3VdbeAddOp2(v, OP_Halt, 0, 0);
sl@0
  1090
          sqlite3VdbeJumpHere(v, addr);
sl@0
  1091
          addr = sqlite3VdbeAddOpList(v, ArraySize(cntIdx), cntIdx);
sl@0
  1092
          sqlite3VdbeChangeP1(v, addr+1, j+2);
sl@0
  1093
          sqlite3VdbeChangeP2(v, addr+1, addr+4);
sl@0
  1094
          sqlite3VdbeChangeP1(v, addr+3, j+2);
sl@0
  1095
          sqlite3VdbeChangeP2(v, addr+3, addr+2);
sl@0
  1096
          sqlite3VdbeJumpHere(v, addr+4);
sl@0
  1097
          sqlite3VdbeChangeP4(v, addr+6, 
sl@0
  1098
                     "wrong # of entries in index ", P4_STATIC);
sl@0
  1099
          sqlite3VdbeChangeP4(v, addr+7, pIdx->zName, P4_STATIC);
sl@0
  1100
        }
sl@0
  1101
      } 
sl@0
  1102
    }
sl@0
  1103
    addr = sqlite3VdbeAddOpList(v, ArraySize(endCode), endCode);
sl@0
  1104
    sqlite3VdbeChangeP2(v, addr, -mxErr);
sl@0
  1105
    sqlite3VdbeJumpHere(v, addr+1);
sl@0
  1106
    sqlite3VdbeChangeP4(v, addr+2, "ok", P4_STATIC);
sl@0
  1107
  }else
sl@0
  1108
#endif /* SQLITE_OMIT_INTEGRITY_CHECK */
sl@0
  1109
sl@0
  1110
#ifndef SQLITE_OMIT_UTF16
sl@0
  1111
  /*
sl@0
  1112
  **   PRAGMA encoding
sl@0
  1113
  **   PRAGMA encoding = "utf-8"|"utf-16"|"utf-16le"|"utf-16be"
sl@0
  1114
  **
sl@0
  1115
  ** In its first form, this pragma returns the encoding of the main
sl@0
  1116
  ** database. If the database is not initialized, it is initialized now.
sl@0
  1117
  **
sl@0
  1118
  ** The second form of this pragma is a no-op if the main database file
sl@0
  1119
  ** has not already been initialized. In this case it sets the default
sl@0
  1120
  ** encoding that will be used for the main database file if a new file
sl@0
  1121
  ** is created. If an existing main database file is opened, then the
sl@0
  1122
  ** default text encoding for the existing database is used.
sl@0
  1123
  ** 
sl@0
  1124
  ** In all cases new databases created using the ATTACH command are
sl@0
  1125
  ** created to use the same default text encoding as the main database. If
sl@0
  1126
  ** the main database has not been initialized and/or created when ATTACH
sl@0
  1127
  ** is executed, this is done before the ATTACH operation.
sl@0
  1128
  **
sl@0
  1129
  ** In the second form this pragma sets the text encoding to be used in
sl@0
  1130
  ** new database files created using this database handle. It is only
sl@0
  1131
  ** useful if invoked immediately after the main database i
sl@0
  1132
  */
sl@0
  1133
  if( sqlite3StrICmp(zLeft, "encoding")==0 ){
sl@0
  1134
    static const struct EncName {
sl@0
  1135
      char *zName;
sl@0
  1136
      u8 enc;
sl@0
  1137
    } encnames[] = {
sl@0
  1138
      { "UTF-8",    SQLITE_UTF8        },
sl@0
  1139
      { "UTF8",     SQLITE_UTF8        },
sl@0
  1140
      { "UTF-16le", SQLITE_UTF16LE     },
sl@0
  1141
      { "UTF16le",  SQLITE_UTF16LE     },
sl@0
  1142
      { "UTF-16be", SQLITE_UTF16BE     },
sl@0
  1143
      { "UTF16be",  SQLITE_UTF16BE     },
sl@0
  1144
      { "UTF-16",   0                  }, /* SQLITE_UTF16NATIVE */
sl@0
  1145
      { "UTF16",    0                  }, /* SQLITE_UTF16NATIVE */
sl@0
  1146
      { 0, 0 }
sl@0
  1147
    };
sl@0
  1148
    const struct EncName *pEnc;
sl@0
  1149
    if( !zRight ){    /* "PRAGMA encoding" */
sl@0
  1150
      if( sqlite3ReadSchema(pParse) ) goto pragma_out;
sl@0
  1151
      sqlite3VdbeSetNumCols(v, 1);
sl@0
  1152
      sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "encoding", P4_STATIC);
sl@0
  1153
      sqlite3VdbeAddOp2(v, OP_String8, 0, 1);
sl@0
  1154
      for(pEnc=&encnames[0]; pEnc->zName; pEnc++){
sl@0
  1155
        if( pEnc->enc==ENC(pParse->db) ){
sl@0
  1156
          sqlite3VdbeChangeP4(v, -1, pEnc->zName, P4_STATIC);
sl@0
  1157
          break;
sl@0
  1158
        }
sl@0
  1159
      }
sl@0
  1160
      sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1);
sl@0
  1161
    }else{                        /* "PRAGMA encoding = XXX" */
sl@0
  1162
      /* Only change the value of sqlite.enc if the database handle is not
sl@0
  1163
      ** initialized. If the main database exists, the new sqlite.enc value
sl@0
  1164
      ** will be overwritten when the schema is next loaded. If it does not
sl@0
  1165
      ** already exists, it will be created to use the new encoding value.
sl@0
  1166
      */
sl@0
  1167
      if( 
sl@0
  1168
        !(DbHasProperty(db, 0, DB_SchemaLoaded)) || 
sl@0
  1169
        DbHasProperty(db, 0, DB_Empty) 
sl@0
  1170
      ){
sl@0
  1171
        for(pEnc=&encnames[0]; pEnc->zName; pEnc++){
sl@0
  1172
          if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
sl@0
  1173
            ENC(pParse->db) = pEnc->enc ? pEnc->enc : SQLITE_UTF16NATIVE;
sl@0
  1174
            break;
sl@0
  1175
          }
sl@0
  1176
        }
sl@0
  1177
        if( !pEnc->zName ){
sl@0
  1178
          sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
sl@0
  1179
        }
sl@0
  1180
      }
sl@0
  1181
    }
sl@0
  1182
  }else
sl@0
  1183
#endif /* SQLITE_OMIT_UTF16 */
sl@0
  1184
sl@0
  1185
#ifndef SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS
sl@0
  1186
  /*
sl@0
  1187
  **   PRAGMA [database.]schema_version
sl@0
  1188
  **   PRAGMA [database.]schema_version = <integer>
sl@0
  1189
  **
sl@0
  1190
  **   PRAGMA [database.]user_version
sl@0
  1191
  **   PRAGMA [database.]user_version = <integer>
sl@0
  1192
  **
sl@0
  1193
  ** The pragma's schema_version and user_version are used to set or get
sl@0
  1194
  ** the value of the schema-version and user-version, respectively. Both
sl@0
  1195
  ** the schema-version and the user-version are 32-bit signed integers
sl@0
  1196
  ** stored in the database header.
sl@0
  1197
  **
sl@0
  1198
  ** The schema-cookie is usually only manipulated internally by SQLite. It
sl@0
  1199
  ** is incremented by SQLite whenever the database schema is modified (by
sl@0
  1200
  ** creating or dropping a table or index). The schema version is used by
sl@0
  1201
  ** SQLite each time a query is executed to ensure that the internal cache
sl@0
  1202
  ** of the schema used when compiling the SQL query matches the schema of
sl@0
  1203
  ** the database against which the compiled query is actually executed.
sl@0
  1204
  ** Subverting this mechanism by using "PRAGMA schema_version" to modify
sl@0
  1205
  ** the schema-version is potentially dangerous and may lead to program
sl@0
  1206
  ** crashes or database corruption. Use with caution!
sl@0
  1207
  **
sl@0
  1208
  ** The user-version is not used internally by SQLite. It may be used by
sl@0
  1209
  ** applications for any purpose.
sl@0
  1210
  */
sl@0
  1211
  if( sqlite3StrICmp(zLeft, "schema_version")==0 
sl@0
  1212
   || sqlite3StrICmp(zLeft, "user_version")==0 
sl@0
  1213
   || sqlite3StrICmp(zLeft, "freelist_count")==0 
sl@0
  1214
  ){
sl@0
  1215
    int iCookie;   /* Cookie index. 0 for schema-cookie, 6 for user-cookie. */
sl@0
  1216
    sqlite3VdbeUsesBtree(v, iDb);
sl@0
  1217
    switch( zLeft[0] ){
sl@0
  1218
      case 's': case 'S':
sl@0
  1219
        iCookie = 0;
sl@0
  1220
        break;
sl@0
  1221
      case 'f': case 'F':
sl@0
  1222
        iCookie = 1;
sl@0
  1223
        iDb = (-1*(iDb+1));
sl@0
  1224
        assert(iDb<=0);
sl@0
  1225
        break;
sl@0
  1226
      default:
sl@0
  1227
        iCookie = 5;
sl@0
  1228
        break;
sl@0
  1229
    }
sl@0
  1230
sl@0
  1231
    if( zRight && iDb>=0 ){
sl@0
  1232
      /* Write the specified cookie value */
sl@0
  1233
      static const VdbeOpList setCookie[] = {
sl@0
  1234
        { OP_Transaction,    0,  1,  0},    /* 0 */
sl@0
  1235
        { OP_Integer,        0,  1,  0},    /* 1 */
sl@0
  1236
        { OP_SetCookie,      0,  0,  1},    /* 2 */
sl@0
  1237
      };
sl@0
  1238
      int addr = sqlite3VdbeAddOpList(v, ArraySize(setCookie), setCookie);
sl@0
  1239
      sqlite3VdbeChangeP1(v, addr, iDb);
sl@0
  1240
      sqlite3VdbeChangeP1(v, addr+1, atoi(zRight));
sl@0
  1241
      sqlite3VdbeChangeP1(v, addr+2, iDb);
sl@0
  1242
      sqlite3VdbeChangeP2(v, addr+2, iCookie);
sl@0
  1243
    }else{
sl@0
  1244
      /* Read the specified cookie value */
sl@0
  1245
      static const VdbeOpList readCookie[] = {
sl@0
  1246
        { OP_ReadCookie,      0,  1,  0},    /* 0 */
sl@0
  1247
        { OP_ResultRow,       1,  1,  0}
sl@0
  1248
      };
sl@0
  1249
      int addr = sqlite3VdbeAddOpList(v, ArraySize(readCookie), readCookie);
sl@0
  1250
      sqlite3VdbeChangeP1(v, addr, iDb);
sl@0
  1251
      sqlite3VdbeChangeP3(v, addr, iCookie);
sl@0
  1252
      sqlite3VdbeSetNumCols(v, 1);
sl@0
  1253
      sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLeft, P4_TRANSIENT);
sl@0
  1254
    }
sl@0
  1255
  }else
sl@0
  1256
#endif /* SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS */
sl@0
  1257
sl@0
  1258
#if defined(SQLITE_DEBUG) || defined(SQLITE_TEST)
sl@0
  1259
  /*
sl@0
  1260
  ** Report the current state of file logs for all databases
sl@0
  1261
  */
sl@0
  1262
  if( sqlite3StrICmp(zLeft, "lock_status")==0 ){
sl@0
  1263
    static const char *const azLockName[] = {
sl@0
  1264
      "unlocked", "shared", "reserved", "pending", "exclusive"
sl@0
  1265
    };
sl@0
  1266
    int i;
sl@0
  1267
    Vdbe *v = sqlite3GetVdbe(pParse);
sl@0
  1268
    sqlite3VdbeSetNumCols(v, 2);
sl@0
  1269
    pParse->nMem = 2;
sl@0
  1270
    sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "database", P4_STATIC);
sl@0
  1271
    sqlite3VdbeSetColName(v, 1, COLNAME_NAME, "status", P4_STATIC);
sl@0
  1272
    for(i=0; i<db->nDb; i++){
sl@0
  1273
      Btree *pBt;
sl@0
  1274
      Pager *pPager;
sl@0
  1275
      const char *zState = "unknown";
sl@0
  1276
      int j;
sl@0
  1277
      if( db->aDb[i].zName==0 ) continue;
sl@0
  1278
      sqlite3VdbeAddOp4(v, OP_String8, 0, 1, 0, db->aDb[i].zName, P4_STATIC);
sl@0
  1279
      pBt = db->aDb[i].pBt;
sl@0
  1280
      if( pBt==0 || (pPager = sqlite3BtreePager(pBt))==0 ){
sl@0
  1281
        zState = "closed";
sl@0
  1282
      }else if( sqlite3_file_control(db, i ? db->aDb[i].zName : 0, 
sl@0
  1283
                                     SQLITE_FCNTL_LOCKSTATE, &j)==SQLITE_OK ){
sl@0
  1284
         zState = azLockName[j];
sl@0
  1285
      }
sl@0
  1286
      sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, zState, P4_STATIC);
sl@0
  1287
      sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 2);
sl@0
  1288
    }
sl@0
  1289
sl@0
  1290
  }else
sl@0
  1291
#endif
sl@0
  1292
sl@0
  1293
#ifdef SQLITE_SSE
sl@0
  1294
  /*
sl@0
  1295
  ** Check to see if the sqlite_statements table exists.  Create it
sl@0
  1296
  ** if it does not.
sl@0
  1297
  */
sl@0
  1298
  if( sqlite3StrICmp(zLeft, "create_sqlite_statement_table")==0 ){
sl@0
  1299
    extern int sqlite3CreateStatementsTable(Parse*);
sl@0
  1300
    sqlite3CreateStatementsTable(pParse);
sl@0
  1301
  }else
sl@0
  1302
#endif
sl@0
  1303
sl@0
  1304
#if SQLITE_HAS_CODEC
sl@0
  1305
  if( sqlite3StrICmp(zLeft, "key")==0 ){
sl@0
  1306
    sqlite3_key(db, zRight, strlen(zRight));
sl@0
  1307
  }else
sl@0
  1308
#endif
sl@0
  1309
#if SQLITE_HAS_CODEC || defined(SQLITE_ENABLE_CEROD)
sl@0
  1310
  if( sqlite3StrICmp(zLeft, "activate_extensions")==0 ){
sl@0
  1311
#if SQLITE_HAS_CODEC
sl@0
  1312
    if( sqlite3StrNICmp(zRight, "see-", 4)==0 ){
sl@0
  1313
      extern void sqlite3_activate_see(const char*);
sl@0
  1314
      sqlite3_activate_see(&zRight[4]);
sl@0
  1315
    }
sl@0
  1316
#endif
sl@0
  1317
#ifdef SQLITE_ENABLE_CEROD
sl@0
  1318
    if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
sl@0
  1319
      extern void sqlite3_activate_cerod(const char*);
sl@0
  1320
      sqlite3_activate_cerod(&zRight[6]);
sl@0
  1321
    }
sl@0
  1322
#endif
sl@0
  1323
  }
sl@0
  1324
#endif
sl@0
  1325
sl@0
  1326
  {}
sl@0
  1327
sl@0
  1328
  if( v ){
sl@0
  1329
    /* Code an OP_Expire at the end of each PRAGMA program to cause
sl@0
  1330
    ** the VDBE implementing the pragma to expire. Most (all?) pragmas
sl@0
  1331
    ** are only valid for a single execution.
sl@0
  1332
    */
sl@0
  1333
    sqlite3VdbeAddOp2(v, OP_Expire, 1, 0);
sl@0
  1334
sl@0
  1335
    /*
sl@0
  1336
    ** Reset the safety level, in case the fullfsync flag or synchronous
sl@0
  1337
    ** setting changed.
sl@0
  1338
    */
sl@0
  1339
#ifndef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
  1340
    if( db->autoCommit ){
sl@0
  1341
      sqlite3BtreeSetSafetyLevel(pDb->pBt, pDb->safety_level,
sl@0
  1342
                 (db->flags&SQLITE_FullFSync)!=0);
sl@0
  1343
    }
sl@0
  1344
#endif
sl@0
  1345
  }
sl@0
  1346
pragma_out:
sl@0
  1347
  sqlite3DbFree(db, zLeft);
sl@0
  1348
  sqlite3DbFree(db, zRight);
sl@0
  1349
}
sl@0
  1350
sl@0
  1351
#endif /* SQLITE_OMIT_PRAGMA || SQLITE_OMIT_PARSER */