1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite/global.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,77 @@
1.4 +/*
1.5 +** 2008 June 13
1.6 +**
1.7 +** The author disclaims copyright to this source code. In place of
1.8 +** a legal notice, here is a blessing:
1.9 +**
1.10 +** May you do good and not evil.
1.11 +** May you find forgiveness for yourself and forgive others.
1.12 +** May you share freely, never taking more than you give.
1.13 +**
1.14 +*************************************************************************
1.15 +**
1.16 +** This file contains definitions of global variables and contants.
1.17 +**
1.18 +** $Id: global.c,v 1.4 2008/07/28 19:34:53 drh Exp $
1.19 +*/
1.20 +#include "sqliteInt.h"
1.21 +
1.22 +
1.23 +/* An array to map all upper-case characters into their corresponding
1.24 +** lower-case character.
1.25 +**
1.26 +** SQLite only considers US-ASCII (or EBCDIC) characters. We do not
1.27 +** handle case conversions for the UTF character set since the tables
1.28 +** involved are nearly as big or bigger than SQLite itself.
1.29 +*/
1.30 +const unsigned char sqlite3UpperToLower[] = {
1.31 +#ifdef SQLITE_ASCII
1.32 + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
1.33 + 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
1.34 + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
1.35 + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 97, 98, 99,100,101,102,103,
1.36 + 104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,
1.37 + 122, 91, 92, 93, 94, 95, 96, 97, 98, 99,100,101,102,103,104,105,106,107,
1.38 + 108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,
1.39 + 126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
1.40 + 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,
1.41 + 162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,
1.42 + 180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,
1.43 + 198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,
1.44 + 216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,
1.45 + 234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,
1.46 + 252,253,254,255
1.47 +#endif
1.48 +#ifdef SQLITE_EBCDIC
1.49 + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, /* 0x */
1.50 + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 1x */
1.51 + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 2x */
1.52 + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, /* 3x */
1.53 + 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, /* 4x */
1.54 + 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, /* 5x */
1.55 + 96, 97, 66, 67, 68, 69, 70, 71, 72, 73,106,107,108,109,110,111, /* 6x */
1.56 + 112, 81, 82, 83, 84, 85, 86, 87, 88, 89,122,123,124,125,126,127, /* 7x */
1.57 + 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, /* 8x */
1.58 + 144,145,146,147,148,149,150,151,152,153,154,155,156,157,156,159, /* 9x */
1.59 + 160,161,162,163,164,165,166,167,168,169,170,171,140,141,142,175, /* Ax */
1.60 + 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, /* Bx */
1.61 + 192,129,130,131,132,133,134,135,136,137,202,203,204,205,206,207, /* Cx */
1.62 + 208,145,146,147,148,149,150,151,152,153,218,219,220,221,222,223, /* Dx */
1.63 + 224,225,162,163,164,165,166,167,168,169,232,203,204,205,206,207, /* Ex */
1.64 + 239,240,241,242,243,244,245,246,247,248,249,219,220,221,222,255, /* Fx */
1.65 +#endif
1.66 +};
1.67 +
1.68 +/*
1.69 +** The following singleton contains the global configuration for
1.70 +** the SQLite library.
1.71 +*/
1.72 +struct Sqlite3Config sqlite3Config = {
1.73 + 1, /* bMemstat */
1.74 + 1, /* bCoreMutex */
1.75 + 1, /* bFullMutex */
1.76 + 0x7ffffffe, /* mxStrlen */
1.77 + 100, /* szLookaside */
1.78 + 500, /* nLookaside */
1.79 + /* Other fields all default to zero */
1.80 +};