os/persistentdata/persistentstorage/sqlite3api/TEST/SRC/test_config.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
** 2007 May 7
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
** 
sl@0
    13
** This file contains code used for testing the SQLite system.
sl@0
    14
** None of the code in this file goes into a deliverable build.
sl@0
    15
** 
sl@0
    16
** The focus of this file is providing the TCL testing layer
sl@0
    17
** access to compile-time constants.
sl@0
    18
**
sl@0
    19
** $Id: test_config.c,v 1.37 2008/09/23 10:16:05 drh Exp $
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "sqliteLimit.h"
sl@0
    23
sl@0
    24
#include "sqliteInt.h"
sl@0
    25
#include "tcl.h"
sl@0
    26
#include <stdlib.h>
sl@0
    27
#include <string.h>
sl@0
    28
sl@0
    29
/*
sl@0
    30
** Macro to stringify the results of the evaluation a pre-processor
sl@0
    31
** macro. i.e. so that STRINGVALUE(SQLITE_NOMEM) -> "7".
sl@0
    32
*/
sl@0
    33
#define STRINGVALUE2(x) #x
sl@0
    34
#define STRINGVALUE(x) STRINGVALUE2(x)
sl@0
    35
sl@0
    36
/*
sl@0
    37
** This routine sets entries in the global ::sqlite_options() array variable
sl@0
    38
** according to the compile-time configuration of the database.  Test
sl@0
    39
** procedures use this to determine when tests should be omitted.
sl@0
    40
*/
sl@0
    41
static void set_options(Tcl_Interp *interp){
sl@0
    42
#ifdef SQLITE_32BIT_ROWID
sl@0
    43
  Tcl_SetVar2(interp, "sqlite_options", "rowid32", "1", TCL_GLOBAL_ONLY);
sl@0
    44
#else
sl@0
    45
  Tcl_SetVar2(interp, "sqlite_options", "rowid32", "0", TCL_GLOBAL_ONLY);
sl@0
    46
#endif
sl@0
    47
sl@0
    48
#ifdef SQLITE_CASE_SENSITIVE_LIKE
sl@0
    49
  Tcl_SetVar2(interp, "sqlite_options","casesensitivelike","1",TCL_GLOBAL_ONLY);
sl@0
    50
#else
sl@0
    51
  Tcl_SetVar2(interp, "sqlite_options","casesensitivelike","0",TCL_GLOBAL_ONLY);
sl@0
    52
#endif
sl@0
    53
sl@0
    54
#ifdef SQLITE_DEBUG
sl@0
    55
  Tcl_SetVar2(interp, "sqlite_options", "debug", "1", TCL_GLOBAL_ONLY);
sl@0
    56
#else
sl@0
    57
  Tcl_SetVar2(interp, "sqlite_options", "debug", "0", TCL_GLOBAL_ONLY);
sl@0
    58
#endif
sl@0
    59
sl@0
    60
#ifdef SQLITE_DISABLE_DIRSYNC
sl@0
    61
  Tcl_SetVar2(interp, "sqlite_options", "dirsync", "0", TCL_GLOBAL_ONLY);
sl@0
    62
#else
sl@0
    63
  Tcl_SetVar2(interp, "sqlite_options", "dirsync", "1", TCL_GLOBAL_ONLY);
sl@0
    64
#endif
sl@0
    65
sl@0
    66
#ifdef SQLITE_DISABLE_LFS
sl@0
    67
  Tcl_SetVar2(interp, "sqlite_options", "lfs", "0", TCL_GLOBAL_ONLY);
sl@0
    68
#else
sl@0
    69
  Tcl_SetVar2(interp, "sqlite_options", "lfs", "1", TCL_GLOBAL_ONLY);
sl@0
    70
#endif
sl@0
    71
sl@0
    72
#if 1 /* def SQLITE_MEMDEBUG */
sl@0
    73
  Tcl_SetVar2(interp, "sqlite_options", "memdebug", "1", TCL_GLOBAL_ONLY);
sl@0
    74
#else
sl@0
    75
  Tcl_SetVar2(interp, "sqlite_options", "memdebug", "0", TCL_GLOBAL_ONLY);
sl@0
    76
#endif
sl@0
    77
sl@0
    78
#ifdef SQLITE_ENABLE_MEMSYS3
sl@0
    79
  Tcl_SetVar2(interp, "sqlite_options", "mem3", "1", TCL_GLOBAL_ONLY);
sl@0
    80
#else
sl@0
    81
  Tcl_SetVar2(interp, "sqlite_options", "mem3", "0", TCL_GLOBAL_ONLY);
sl@0
    82
#endif
sl@0
    83
sl@0
    84
#ifdef SQLITE_ENABLE_MEMSYS5
sl@0
    85
  Tcl_SetVar2(interp, "sqlite_options", "mem5", "1", TCL_GLOBAL_ONLY);
sl@0
    86
#else
sl@0
    87
  Tcl_SetVar2(interp, "sqlite_options", "mem5", "0", TCL_GLOBAL_ONLY);
sl@0
    88
#endif
sl@0
    89
sl@0
    90
#ifdef SQLITE_OMIT_ALTERTABLE
sl@0
    91
  Tcl_SetVar2(interp, "sqlite_options", "altertable", "0", TCL_GLOBAL_ONLY);
sl@0
    92
#else
sl@0
    93
  Tcl_SetVar2(interp, "sqlite_options", "altertable", "1", TCL_GLOBAL_ONLY);
sl@0
    94
#endif
sl@0
    95
sl@0
    96
#ifdef SQLITE_OMIT_ANALYZE
sl@0
    97
  Tcl_SetVar2(interp, "sqlite_options", "analyze", "0", TCL_GLOBAL_ONLY);
sl@0
    98
#else
sl@0
    99
  Tcl_SetVar2(interp, "sqlite_options", "analyze", "1", TCL_GLOBAL_ONLY);
sl@0
   100
#endif
sl@0
   101
sl@0
   102
#ifdef SQLITE_ENABLE_ATOMIC_WRITE
sl@0
   103
  Tcl_SetVar2(interp, "sqlite_options", "atomicwrite", "1", TCL_GLOBAL_ONLY);
sl@0
   104
#else
sl@0
   105
  Tcl_SetVar2(interp, "sqlite_options", "atomicwrite", "0", TCL_GLOBAL_ONLY);
sl@0
   106
#endif
sl@0
   107
sl@0
   108
#ifdef SQLITE_OMIT_ATTACH
sl@0
   109
  Tcl_SetVar2(interp, "sqlite_options", "attach", "0", TCL_GLOBAL_ONLY);
sl@0
   110
#else
sl@0
   111
  Tcl_SetVar2(interp, "sqlite_options", "attach", "1", TCL_GLOBAL_ONLY);
sl@0
   112
#endif
sl@0
   113
sl@0
   114
#ifdef SQLITE_OMIT_AUTHORIZATION
sl@0
   115
  Tcl_SetVar2(interp, "sqlite_options", "auth", "0", TCL_GLOBAL_ONLY);
sl@0
   116
#else
sl@0
   117
  Tcl_SetVar2(interp, "sqlite_options", "auth", "1", TCL_GLOBAL_ONLY);
sl@0
   118
#endif
sl@0
   119
sl@0
   120
#ifdef SQLITE_OMIT_AUTOINCREMENT
sl@0
   121
  Tcl_SetVar2(interp, "sqlite_options", "autoinc", "0", TCL_GLOBAL_ONLY);
sl@0
   122
#else
sl@0
   123
  Tcl_SetVar2(interp, "sqlite_options", "autoinc", "1", TCL_GLOBAL_ONLY);
sl@0
   124
#endif
sl@0
   125
sl@0
   126
#ifdef SQLITE_OMIT_AUTOVACUUM
sl@0
   127
  Tcl_SetVar2(interp, "sqlite_options", "autovacuum", "0", TCL_GLOBAL_ONLY);
sl@0
   128
#else
sl@0
   129
  Tcl_SetVar2(interp, "sqlite_options", "autovacuum", "1", TCL_GLOBAL_ONLY);
sl@0
   130
#endif /* SQLITE_OMIT_AUTOVACUUM */
sl@0
   131
#if !defined(SQLITE_DEFAULT_AUTOVACUUM)
sl@0
   132
  Tcl_SetVar2(interp,"sqlite_options","default_autovacuum","0",TCL_GLOBAL_ONLY);
sl@0
   133
#else
sl@0
   134
  Tcl_SetVar2(interp, "sqlite_options", "default_autovacuum", 
sl@0
   135
      STRINGVALUE(SQLITE_DEFAULT_AUTOVACUUM), TCL_GLOBAL_ONLY);
sl@0
   136
#endif
sl@0
   137
sl@0
   138
#ifdef SQLITE_OMIT_BETWEEN_OPTIMIZATION
sl@0
   139
  Tcl_SetVar2(interp, "sqlite_options", "between_opt", "0", TCL_GLOBAL_ONLY);
sl@0
   140
#else
sl@0
   141
  Tcl_SetVar2(interp, "sqlite_options", "between_opt", "1", TCL_GLOBAL_ONLY);
sl@0
   142
#endif
sl@0
   143
sl@0
   144
#ifdef SQLITE_OMIT_BUILTIN_TEST
sl@0
   145
  Tcl_SetVar2(interp, "sqlite_options", "builtin_test", "0", TCL_GLOBAL_ONLY);
sl@0
   146
#else
sl@0
   147
  Tcl_SetVar2(interp, "sqlite_options", "builtin_test", "1", TCL_GLOBAL_ONLY);
sl@0
   148
#endif
sl@0
   149
sl@0
   150
#ifdef SQLITE_OMIT_BLOB_LITERAL
sl@0
   151
  Tcl_SetVar2(interp, "sqlite_options", "bloblit", "0", TCL_GLOBAL_ONLY);
sl@0
   152
#else
sl@0
   153
  Tcl_SetVar2(interp, "sqlite_options", "bloblit", "1", TCL_GLOBAL_ONLY);
sl@0
   154
#endif
sl@0
   155
sl@0
   156
#ifdef SQLITE_OMIT_CAST
sl@0
   157
  Tcl_SetVar2(interp, "sqlite_options", "cast", "0", TCL_GLOBAL_ONLY);
sl@0
   158
#else
sl@0
   159
  Tcl_SetVar2(interp, "sqlite_options", "cast", "1", TCL_GLOBAL_ONLY);
sl@0
   160
#endif
sl@0
   161
sl@0
   162
#ifdef SQLITE_OMIT_CHECK
sl@0
   163
  Tcl_SetVar2(interp, "sqlite_options", "check", "0", TCL_GLOBAL_ONLY);
sl@0
   164
#else
sl@0
   165
  Tcl_SetVar2(interp, "sqlite_options", "check", "1", TCL_GLOBAL_ONLY);
sl@0
   166
#endif
sl@0
   167
sl@0
   168
#ifdef SQLITE_ENABLE_COLUMN_METADATA
sl@0
   169
  Tcl_SetVar2(interp, "sqlite_options", "columnmetadata", "1", TCL_GLOBAL_ONLY);
sl@0
   170
#else
sl@0
   171
  Tcl_SetVar2(interp, "sqlite_options", "columnmetadata", "0", TCL_GLOBAL_ONLY);
sl@0
   172
#endif
sl@0
   173
sl@0
   174
#ifdef SQLITE_OMIT_COMPLETE
sl@0
   175
  Tcl_SetVar2(interp, "sqlite_options", "complete", "0", TCL_GLOBAL_ONLY);
sl@0
   176
#else
sl@0
   177
  Tcl_SetVar2(interp, "sqlite_options", "complete", "1", TCL_GLOBAL_ONLY);
sl@0
   178
#endif
sl@0
   179
sl@0
   180
#ifdef SQLITE_OMIT_COMPOUND_SELECT
sl@0
   181
  Tcl_SetVar2(interp, "sqlite_options", "compound", "0", TCL_GLOBAL_ONLY);
sl@0
   182
#else
sl@0
   183
  Tcl_SetVar2(interp, "sqlite_options", "compound", "1", TCL_GLOBAL_ONLY);
sl@0
   184
#endif
sl@0
   185
sl@0
   186
#ifdef SQLITE_OMIT_CONFLICT_CLAUSE
sl@0
   187
  Tcl_SetVar2(interp, "sqlite_options", "conflict", "0", TCL_GLOBAL_ONLY);
sl@0
   188
#else
sl@0
   189
  Tcl_SetVar2(interp, "sqlite_options", "conflict", "1", TCL_GLOBAL_ONLY);
sl@0
   190
#endif
sl@0
   191
sl@0
   192
#if SQLITE_OS_UNIX
sl@0
   193
  Tcl_SetVar2(interp, "sqlite_options", "crashtest", "1", TCL_GLOBAL_ONLY);
sl@0
   194
#else
sl@0
   195
  Tcl_SetVar2(interp, "sqlite_options", "crashtest", "0", TCL_GLOBAL_ONLY);
sl@0
   196
#endif
sl@0
   197
sl@0
   198
#ifdef SQLITE_OMIT_DATETIME_FUNCS
sl@0
   199
  Tcl_SetVar2(interp, "sqlite_options", "datetime", "0", TCL_GLOBAL_ONLY);
sl@0
   200
#else
sl@0
   201
  Tcl_SetVar2(interp, "sqlite_options", "datetime", "1", TCL_GLOBAL_ONLY);
sl@0
   202
#endif
sl@0
   203
sl@0
   204
#ifdef SQLITE_OMIT_DECLTYPE
sl@0
   205
  Tcl_SetVar2(interp, "sqlite_options", "decltype", "0", TCL_GLOBAL_ONLY);
sl@0
   206
#else
sl@0
   207
  Tcl_SetVar2(interp, "sqlite_options", "decltype", "1", TCL_GLOBAL_ONLY);
sl@0
   208
#endif
sl@0
   209
sl@0
   210
#ifdef SQLITE_OMIT_DISKIO
sl@0
   211
  Tcl_SetVar2(interp, "sqlite_options", "diskio", "0", TCL_GLOBAL_ONLY);
sl@0
   212
#else
sl@0
   213
  Tcl_SetVar2(interp, "sqlite_options", "diskio", "1", TCL_GLOBAL_ONLY);
sl@0
   214
#endif
sl@0
   215
sl@0
   216
#ifdef SQLITE_OMIT_EXPLAIN
sl@0
   217
  Tcl_SetVar2(interp, "sqlite_options", "explain", "0", TCL_GLOBAL_ONLY);
sl@0
   218
#else
sl@0
   219
  Tcl_SetVar2(interp, "sqlite_options", "explain", "1", TCL_GLOBAL_ONLY);
sl@0
   220
#endif
sl@0
   221
sl@0
   222
#ifdef SQLITE_OMIT_FLOATING_POINT
sl@0
   223
  Tcl_SetVar2(interp, "sqlite_options", "floatingpoint", "0", TCL_GLOBAL_ONLY);
sl@0
   224
#else
sl@0
   225
  Tcl_SetVar2(interp, "sqlite_options", "floatingpoint", "1", TCL_GLOBAL_ONLY);
sl@0
   226
#endif
sl@0
   227
sl@0
   228
#ifdef SQLITE_OMIT_FOREIGN_KEY
sl@0
   229
  Tcl_SetVar2(interp, "sqlite_options", "foreignkey", "0", TCL_GLOBAL_ONLY);
sl@0
   230
#else
sl@0
   231
  Tcl_SetVar2(interp, "sqlite_options", "foreignkey", "1", TCL_GLOBAL_ONLY);
sl@0
   232
#endif
sl@0
   233
sl@0
   234
#ifdef SQLITE_ENABLE_FTS1
sl@0
   235
  Tcl_SetVar2(interp, "sqlite_options", "fts1", "1", TCL_GLOBAL_ONLY);
sl@0
   236
#else
sl@0
   237
  Tcl_SetVar2(interp, "sqlite_options", "fts1", "0", TCL_GLOBAL_ONLY);
sl@0
   238
#endif
sl@0
   239
sl@0
   240
#ifdef SQLITE_ENABLE_FTS2
sl@0
   241
  Tcl_SetVar2(interp, "sqlite_options", "fts2", "1", TCL_GLOBAL_ONLY);
sl@0
   242
#else
sl@0
   243
  Tcl_SetVar2(interp, "sqlite_options", "fts2", "0", TCL_GLOBAL_ONLY);
sl@0
   244
#endif
sl@0
   245
sl@0
   246
#ifdef SQLITE_ENABLE_FTS3
sl@0
   247
  Tcl_SetVar2(interp, "sqlite_options", "fts3", "1", TCL_GLOBAL_ONLY);
sl@0
   248
#else
sl@0
   249
  Tcl_SetVar2(interp, "sqlite_options", "fts3", "0", TCL_GLOBAL_ONLY);
sl@0
   250
#endif
sl@0
   251
sl@0
   252
#ifdef SQLITE_OMIT_GET_TABLE
sl@0
   253
  Tcl_SetVar2(interp, "sqlite_options", "gettable", "0", TCL_GLOBAL_ONLY);
sl@0
   254
#else
sl@0
   255
  Tcl_SetVar2(interp, "sqlite_options", "gettable", "1", TCL_GLOBAL_ONLY);
sl@0
   256
#endif
sl@0
   257
sl@0
   258
#ifdef SQLITE_OMIT_GLOBALRECOVER
sl@0
   259
  Tcl_SetVar2(interp, "sqlite_options", "globalrecover", "0", TCL_GLOBAL_ONLY);
sl@0
   260
#else
sl@0
   261
  Tcl_SetVar2(interp, "sqlite_options", "globalrecover", "1", TCL_GLOBAL_ONLY);
sl@0
   262
#endif
sl@0
   263
sl@0
   264
#ifdef SQLITE_ENABLE_ICU
sl@0
   265
  Tcl_SetVar2(interp, "sqlite_options", "icu", "1", TCL_GLOBAL_ONLY);
sl@0
   266
#else
sl@0
   267
  Tcl_SetVar2(interp, "sqlite_options", "icu", "0", TCL_GLOBAL_ONLY);
sl@0
   268
#endif
sl@0
   269
sl@0
   270
#ifdef SQLITE_OMIT_INCRBLOB
sl@0
   271
  Tcl_SetVar2(interp, "sqlite_options", "incrblob", "0", TCL_GLOBAL_ONLY);
sl@0
   272
#else
sl@0
   273
  Tcl_SetVar2(interp, "sqlite_options", "incrblob", "1", TCL_GLOBAL_ONLY);
sl@0
   274
#endif /* SQLITE_OMIT_AUTOVACUUM */
sl@0
   275
sl@0
   276
#ifdef SQLITE_OMIT_INTEGRITY_CHECK
sl@0
   277
  Tcl_SetVar2(interp, "sqlite_options", "integrityck", "0", TCL_GLOBAL_ONLY);
sl@0
   278
#else
sl@0
   279
  Tcl_SetVar2(interp, "sqlite_options", "integrityck", "1", TCL_GLOBAL_ONLY);
sl@0
   280
#endif
sl@0
   281
sl@0
   282
#if defined(SQLITE_DEFAULT_FILE_FORMAT) && SQLITE_DEFAULT_FILE_FORMAT==1
sl@0
   283
  Tcl_SetVar2(interp, "sqlite_options", "legacyformat", "1", TCL_GLOBAL_ONLY);
sl@0
   284
#else
sl@0
   285
  Tcl_SetVar2(interp, "sqlite_options", "legacyformat", "0", TCL_GLOBAL_ONLY);
sl@0
   286
#endif
sl@0
   287
sl@0
   288
#ifdef SQLITE_OMIT_LIKE_OPTIMIZATION
sl@0
   289
  Tcl_SetVar2(interp, "sqlite_options", "like_opt", "0", TCL_GLOBAL_ONLY);
sl@0
   290
#else
sl@0
   291
  Tcl_SetVar2(interp, "sqlite_options", "like_opt", "1", TCL_GLOBAL_ONLY);
sl@0
   292
#endif
sl@0
   293
sl@0
   294
#ifdef SQLITE_OMIT_LOAD_EXTENSION
sl@0
   295
  Tcl_SetVar2(interp, "sqlite_options", "load_ext", "0", TCL_GLOBAL_ONLY);
sl@0
   296
#else
sl@0
   297
  Tcl_SetVar2(interp, "sqlite_options", "load_ext", "1", TCL_GLOBAL_ONLY);
sl@0
   298
#endif
sl@0
   299
sl@0
   300
#ifdef SQLITE_OMIT_LOCALTIME
sl@0
   301
  Tcl_SetVar2(interp, "sqlite_options", "localtime", "0", TCL_GLOBAL_ONLY);
sl@0
   302
#else
sl@0
   303
  Tcl_SetVar2(interp, "sqlite_options", "localtime", "1", TCL_GLOBAL_ONLY);
sl@0
   304
#endif
sl@0
   305
sl@0
   306
Tcl_SetVar2(interp, "sqlite_options", "long_double",
sl@0
   307
              sizeof(LONGDOUBLE_TYPE)>sizeof(double) ? "1" : "0",
sl@0
   308
              TCL_GLOBAL_ONLY);
sl@0
   309
sl@0
   310
#ifdef SQLITE_OMIT_MEMORYDB
sl@0
   311
  Tcl_SetVar2(interp, "sqlite_options", "memorydb", "0", TCL_GLOBAL_ONLY);
sl@0
   312
#else
sl@0
   313
  Tcl_SetVar2(interp, "sqlite_options", "memorydb", "1", TCL_GLOBAL_ONLY);
sl@0
   314
#endif
sl@0
   315
sl@0
   316
#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
sl@0
   317
  Tcl_SetVar2(interp, "sqlite_options", "memorymanage", "1", TCL_GLOBAL_ONLY);
sl@0
   318
#else
sl@0
   319
  Tcl_SetVar2(interp, "sqlite_options", "memorymanage", "0", TCL_GLOBAL_ONLY);
sl@0
   320
#endif
sl@0
   321
sl@0
   322
#ifdef SQLITE_OMIT_OR_OPTIMIZATION
sl@0
   323
  Tcl_SetVar2(interp, "sqlite_options", "or_opt", "0", TCL_GLOBAL_ONLY);
sl@0
   324
#else
sl@0
   325
  Tcl_SetVar2(interp, "sqlite_options", "or_opt", "1", TCL_GLOBAL_ONLY);
sl@0
   326
#endif
sl@0
   327
sl@0
   328
#ifdef SQLITE_OMIT_PAGER_PRAGMAS
sl@0
   329
  Tcl_SetVar2(interp, "sqlite_options", "pager_pragmas", "0", TCL_GLOBAL_ONLY);
sl@0
   330
#else
sl@0
   331
  Tcl_SetVar2(interp, "sqlite_options", "pager_pragmas", "1", TCL_GLOBAL_ONLY);
sl@0
   332
#endif
sl@0
   333
sl@0
   334
#ifdef SQLITE_OMIT_PARSER
sl@0
   335
  Tcl_SetVar2(interp, "sqlite_options", "parser", "0", TCL_GLOBAL_ONLY);
sl@0
   336
#else
sl@0
   337
  Tcl_SetVar2(interp, "sqlite_options", "parser", "1", TCL_GLOBAL_ONLY);
sl@0
   338
#endif
sl@0
   339
sl@0
   340
#if defined(SQLITE_OMIT_PRAGMA) || defined(SQLITE_OMIT_FLAG_PRAGMAS)
sl@0
   341
  Tcl_SetVar2(interp, "sqlite_options", "pragma", "0", TCL_GLOBAL_ONLY);
sl@0
   342
  Tcl_SetVar2(interp, "sqlite_options", "integrityck", "0", TCL_GLOBAL_ONLY);
sl@0
   343
#else
sl@0
   344
  Tcl_SetVar2(interp, "sqlite_options", "pragma", "1", TCL_GLOBAL_ONLY);
sl@0
   345
#endif
sl@0
   346
sl@0
   347
#ifdef SQLITE_OMIT_PROGRESS_CALLBACK
sl@0
   348
  Tcl_SetVar2(interp, "sqlite_options", "progress", "0", TCL_GLOBAL_ONLY);
sl@0
   349
#else
sl@0
   350
  Tcl_SetVar2(interp, "sqlite_options", "progress", "1", TCL_GLOBAL_ONLY);
sl@0
   351
#endif
sl@0
   352
sl@0
   353
#ifdef SQLITE_OMIT_REINDEX
sl@0
   354
  Tcl_SetVar2(interp, "sqlite_options", "reindex", "0", TCL_GLOBAL_ONLY);
sl@0
   355
#else
sl@0
   356
  Tcl_SetVar2(interp, "sqlite_options", "reindex", "1", TCL_GLOBAL_ONLY);
sl@0
   357
#endif
sl@0
   358
sl@0
   359
#ifdef SQLITE_ENABLE_RTREE
sl@0
   360
  Tcl_SetVar2(interp, "sqlite_options", "rtree", "1", TCL_GLOBAL_ONLY);
sl@0
   361
#else
sl@0
   362
  Tcl_SetVar2(interp, "sqlite_options", "rtree", "0", TCL_GLOBAL_ONLY);
sl@0
   363
#endif
sl@0
   364
sl@0
   365
#ifdef SQLITE_OMIT_SCHEMA_PRAGMAS
sl@0
   366
  Tcl_SetVar2(interp, "sqlite_options", "schema_pragmas", "0", TCL_GLOBAL_ONLY);
sl@0
   367
#else
sl@0
   368
  Tcl_SetVar2(interp, "sqlite_options", "schema_pragmas", "1", TCL_GLOBAL_ONLY);
sl@0
   369
#endif
sl@0
   370
sl@0
   371
#ifdef SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS
sl@0
   372
  Tcl_SetVar2(interp, "sqlite_options", "schema_version", "0", TCL_GLOBAL_ONLY);
sl@0
   373
#else
sl@0
   374
  Tcl_SetVar2(interp, "sqlite_options", "schema_version", "1", TCL_GLOBAL_ONLY);
sl@0
   375
#endif
sl@0
   376
sl@0
   377
#ifdef SQLITE_OMIT_SHARED_CACHE
sl@0
   378
  Tcl_SetVar2(interp, "sqlite_options", "shared_cache", "0", TCL_GLOBAL_ONLY);
sl@0
   379
#else
sl@0
   380
  Tcl_SetVar2(interp, "sqlite_options", "shared_cache", "1", TCL_GLOBAL_ONLY);
sl@0
   381
#endif
sl@0
   382
sl@0
   383
#ifdef SQLITE_OMIT_SUBQUERY
sl@0
   384
  Tcl_SetVar2(interp, "sqlite_options", "subquery", "0", TCL_GLOBAL_ONLY);
sl@0
   385
#else
sl@0
   386
  Tcl_SetVar2(interp, "sqlite_options", "subquery", "1", TCL_GLOBAL_ONLY);
sl@0
   387
#endif
sl@0
   388
sl@0
   389
#ifdef SQLITE_OMIT_TCL_VARIABLE
sl@0
   390
  Tcl_SetVar2(interp, "sqlite_options", "tclvar", "0", TCL_GLOBAL_ONLY);
sl@0
   391
#else
sl@0
   392
  Tcl_SetVar2(interp, "sqlite_options", "tclvar", "1", TCL_GLOBAL_ONLY);
sl@0
   393
#endif
sl@0
   394
sl@0
   395
  Tcl_SetVar2(interp, "sqlite_options", "threadsafe", 
sl@0
   396
      STRINGVALUE(SQLITE_THREADSAFE), TCL_GLOBAL_ONLY);
sl@0
   397
  assert( sqlite3_threadsafe()==SQLITE_THREADSAFE );
sl@0
   398
sl@0
   399
#ifdef SQLITE_OMIT_TRACE
sl@0
   400
  Tcl_SetVar2(interp, "sqlite_options", "trace", "0", TCL_GLOBAL_ONLY);
sl@0
   401
#else
sl@0
   402
  Tcl_SetVar2(interp, "sqlite_options", "trace", "1", TCL_GLOBAL_ONLY);
sl@0
   403
#endif
sl@0
   404
sl@0
   405
#ifdef SQLITE_OMIT_TRIGGER
sl@0
   406
  Tcl_SetVar2(interp, "sqlite_options", "trigger", "0", TCL_GLOBAL_ONLY);
sl@0
   407
#else
sl@0
   408
  Tcl_SetVar2(interp, "sqlite_options", "trigger", "1", TCL_GLOBAL_ONLY);
sl@0
   409
#endif
sl@0
   410
sl@0
   411
#ifdef SQLITE_OMIT_TEMPDB
sl@0
   412
  Tcl_SetVar2(interp, "sqlite_options", "tempdb", "0", TCL_GLOBAL_ONLY);
sl@0
   413
#else
sl@0
   414
  Tcl_SetVar2(interp, "sqlite_options", "tempdb", "1", TCL_GLOBAL_ONLY);
sl@0
   415
#endif
sl@0
   416
sl@0
   417
#ifdef SQLITE_OMIT_UTF16
sl@0
   418
  Tcl_SetVar2(interp, "sqlite_options", "utf16", "0", TCL_GLOBAL_ONLY);
sl@0
   419
#else
sl@0
   420
  Tcl_SetVar2(interp, "sqlite_options", "utf16", "1", TCL_GLOBAL_ONLY);
sl@0
   421
#endif
sl@0
   422
sl@0
   423
#if defined(SQLITE_OMIT_VACUUM) || defined(SQLITE_OMIT_ATTACH)
sl@0
   424
  Tcl_SetVar2(interp, "sqlite_options", "vacuum", "0", TCL_GLOBAL_ONLY);
sl@0
   425
#else
sl@0
   426
  Tcl_SetVar2(interp, "sqlite_options", "vacuum", "1", TCL_GLOBAL_ONLY);
sl@0
   427
#endif
sl@0
   428
sl@0
   429
#ifdef SQLITE_OMIT_VIEW
sl@0
   430
  Tcl_SetVar2(interp, "sqlite_options", "view", "0", TCL_GLOBAL_ONLY);
sl@0
   431
#else
sl@0
   432
  Tcl_SetVar2(interp, "sqlite_options", "view", "1", TCL_GLOBAL_ONLY);
sl@0
   433
#endif
sl@0
   434
sl@0
   435
#ifdef SQLITE_OMIT_VIRTUALTABLE
sl@0
   436
  Tcl_SetVar2(interp, "sqlite_options", "vtab", "0", TCL_GLOBAL_ONLY);
sl@0
   437
#else
sl@0
   438
  Tcl_SetVar2(interp, "sqlite_options", "vtab", "1", TCL_GLOBAL_ONLY);
sl@0
   439
#endif
sl@0
   440
sl@0
   441
#ifdef SQLITE_OMIT_WSD
sl@0
   442
  Tcl_SetVar2(interp, "sqlite_options", "wsd", "0", TCL_GLOBAL_ONLY);
sl@0
   443
#else
sl@0
   444
  Tcl_SetVar2(interp, "sqlite_options", "wsd", "1", TCL_GLOBAL_ONLY);
sl@0
   445
#endif
sl@0
   446
sl@0
   447
#ifdef SQLITE_SECURE_DELETE
sl@0
   448
  Tcl_SetVar2(interp, "sqlite_options", "secure_delete", "1", TCL_GLOBAL_ONLY);
sl@0
   449
#else
sl@0
   450
  Tcl_SetVar2(interp, "sqlite_options", "secure_delete", "0", TCL_GLOBAL_ONLY);
sl@0
   451
#endif
sl@0
   452
sl@0
   453
#ifdef YYTRACKMAXSTACKDEPTH
sl@0
   454
  Tcl_SetVar2(interp, "sqlite_options", "yytrackmaxstackdepth", "1", TCL_GLOBAL_ONLY);
sl@0
   455
#else
sl@0
   456
  Tcl_SetVar2(interp, "sqlite_options", "yytrackmaxstackdepth", "0", TCL_GLOBAL_ONLY);
sl@0
   457
#endif
sl@0
   458
sl@0
   459
#define LINKVAR(x) { \
sl@0
   460
    static const int cv_ ## x = SQLITE_ ## x; \
sl@0
   461
    Tcl_LinkVar(interp, "SQLITE_" #x, (char *)&(cv_ ## x), \
sl@0
   462
                TCL_LINK_INT | TCL_LINK_READ_ONLY); }
sl@0
   463
sl@0
   464
  LINKVAR( MAX_LENGTH );
sl@0
   465
  LINKVAR( MAX_COLUMN );
sl@0
   466
  LINKVAR( MAX_SQL_LENGTH );
sl@0
   467
  LINKVAR( MAX_EXPR_DEPTH );
sl@0
   468
  LINKVAR( MAX_COMPOUND_SELECT );
sl@0
   469
  LINKVAR( MAX_VDBE_OP );
sl@0
   470
  LINKVAR( MAX_FUNCTION_ARG );
sl@0
   471
  LINKVAR( MAX_VARIABLE_NUMBER );
sl@0
   472
  LINKVAR( MAX_PAGE_SIZE );
sl@0
   473
  LINKVAR( MAX_PAGE_COUNT );
sl@0
   474
  LINKVAR( MAX_LIKE_PATTERN_LENGTH );
sl@0
   475
  LINKVAR( DEFAULT_TEMP_CACHE_SIZE );
sl@0
   476
  LINKVAR( DEFAULT_CACHE_SIZE );
sl@0
   477
  LINKVAR( DEFAULT_PAGE_SIZE );
sl@0
   478
  LINKVAR( DEFAULT_FILE_FORMAT );
sl@0
   479
  LINKVAR( MAX_ATTACHED );
sl@0
   480
sl@0
   481
  {
sl@0
   482
    static const int cv_TEMP_STORE = SQLITE_TEMP_STORE;
sl@0
   483
    Tcl_LinkVar(interp, "TEMP_STORE", (char *)&(cv_TEMP_STORE),
sl@0
   484
                TCL_LINK_INT | TCL_LINK_READ_ONLY);
sl@0
   485
  }
sl@0
   486
}
sl@0
   487
sl@0
   488
sl@0
   489
/*
sl@0
   490
** Register commands with the TCL interpreter.
sl@0
   491
*/
sl@0
   492
int Sqliteconfig_Init(Tcl_Interp *interp){
sl@0
   493
  set_options(interp);
sl@0
   494
  return TCL_OK;
sl@0
   495
}