os/persistentdata/persistentstorage/sqlite3api/GROUP/tclsqlite3_macro.mmh
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// SQLite C API test application. Build-time macros.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
*/
sl@0
    21
sl@0
    22
//Symbian OS port
sl@0
    23
MACRO SQLITE_OS_OTHER=1
sl@0
    24
MACRO SQLITE_OS_SYMBIAN=1
sl@0
    25
sl@0
    26
//The default SQLITE_MAX_COLUMN value is 2000. It causes regression test failures.
sl@0
    27
MACRO SQLITE_MAX_COLUMN=4096
sl@0
    28
sl@0
    29
//The default SQLITE_MAX_LENGTH value is 1000000000. It causes an artificial limit on the size of a BLOB object
sl@0
    30
MACRO SQLITE_MAX_LENGTH=2147483647
sl@0
    31
sl@0
    32
//The default SQLITE_MAX_EXPR_DEPTH value is 1000. It causes regression test failures (stack overflow).
sl@0
    33
MACRO SQLITE_MAX_EXPR_DEPTH=250
sl@0
    34
sl@0
    35
//The default SQLITE_MAX_COMPOUND_SELECT value is 500. It causes regression test failures (stack overflow).
sl@0
    36
MACRO SQLITE_MAX_COMPOUND_SELECT=50
sl@0
    37
sl@0
    38
//The SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT value is set to -1 (the default value) - no journal size limit.
sl@0
    39
//The journal size limit is used only if SQLITE_DEFAULT_LOCKING_MODE is 1 (exclusive mode). But for the library it is 0 (normal mode).
sl@0
    40
MACRO SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=-1
sl@0
    41
sl@0
    42
//Set the locking mode to be NORMAL by default
sl@0
    43
MACRO SQLITE_DEFAULT_LOCKING_MODE=0
sl@0
    44
sl@0
    45
//Multi-threaded release. The database handles cannot be shared between threads.
sl@0
    46
MACRO SQLITE_THREADSAFE=2
sl@0
    47
sl@0
    48
//Enable memory management
sl@0
    49
MACRO SQLITE_ENABLE_MEMORY_MANAGEMENT=1
sl@0
    50
sl@0
    51
//Disable >2GB file support
sl@0
    52
MACRO SQLITE_DISABLE_LFS
sl@0
    53
sl@0
    54
//Vacuum mode = auto
sl@0
    55
MACRO SQLITE_DEFAULT_AUTOVACUUM=1
sl@0
    56
sl@0
    57
//Default cache page size in bytes
sl@0
    58
MACRO SQLITE_DEFAULT_PAGE_SIZE=1024
sl@0
    59
sl@0
    60
//Max cache page size in bytes
sl@0
    61
MACRO SQLITE_MAX_PAGE_SIZE=32768
sl@0
    62
sl@0
    63
//Default page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
sl@0
    64
MACRO SQLITE_DEFAULT_CACHE_SIZE=64
sl@0
    65
sl@0
    66
//Default temporary page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
sl@0
    67
MACRO SQLITE_DEFAULT_TEMP_CACHE_SIZE=32
sl@0
    68
sl@0
    69
//Temporary files - in memory only
sl@0
    70
MACRO SQLITE_TEMP_STORE=3
sl@0
    71
sl@0
    72
//Omit the capability to issue "progress" callbacks during long-running SQL statements
sl@0
    73
MACRO SQLITE_OMIT_PROGRESS_CALLBACK=1
sl@0
    74
sl@0
    75
//No virtual tables
sl@0
    76
MACRO SQLITE_OMIT_VIRTUALTABLE=1
sl@0
    77
sl@0
    78
//No SQLITE extensions
sl@0
    79
MACRO SQLITE_OMIT_LOAD_EXTENSION=1
sl@0
    80
sl@0
    81
//Disables SQL statements tracing. Causes a linker error if enabled - ARM4, UREL build.
sl@0
    82
//(Vdbeapi.c, "undefined reference to `__fixunsdfdi'",
sl@0
    83
// the line is: "elapseTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0 - p->startTime;"
sl@0
    84
// there is no convertion function for "double -> uinsigned long long" cast)
sl@0
    85
MACRO SQLITE_OMIT_TRACE=1
sl@0
    86
sl@0
    87
//Enable sqlite debugging
sl@0
    88
MACRO SQLITE_DEBUG=1
sl@0
    89
sl@0
    90
MACRO TCLSH=1
sl@0
    91
sl@0
    92
MACRO SQLITE_TEST=1
sl@0
    93
sl@0
    94
MACRO SQLITE_CORE
sl@0
    95
sl@0
    96
MACRO SQLITE_CRASH_TEST=1
sl@0
    97
sl@0
    98
MACRO SQLITE_SERVER=1
sl@0
    99
sl@0
   100
MACRO SQLITE_NO_SYNC=1
sl@0
   101
sl@0
   102
MACRO SQLITE_MEMDEBUG=1