os/persistentdata/persistentstorage/sqlite3api/GROUP/tclsqlite3_macro.mmh
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/GROUP/tclsqlite3_macro.mmh	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,102 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// SQLite C API test application. Build-time macros.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 +*/
    1.24 +
    1.25 +//Symbian OS port
    1.26 +MACRO SQLITE_OS_OTHER=1
    1.27 +MACRO SQLITE_OS_SYMBIAN=1
    1.28 +
    1.29 +//The default SQLITE_MAX_COLUMN value is 2000. It causes regression test failures.
    1.30 +MACRO SQLITE_MAX_COLUMN=4096
    1.31 +
    1.32 +//The default SQLITE_MAX_LENGTH value is 1000000000. It causes an artificial limit on the size of a BLOB object
    1.33 +MACRO SQLITE_MAX_LENGTH=2147483647
    1.34 +
    1.35 +//The default SQLITE_MAX_EXPR_DEPTH value is 1000. It causes regression test failures (stack overflow).
    1.36 +MACRO SQLITE_MAX_EXPR_DEPTH=250
    1.37 +
    1.38 +//The default SQLITE_MAX_COMPOUND_SELECT value is 500. It causes regression test failures (stack overflow).
    1.39 +MACRO SQLITE_MAX_COMPOUND_SELECT=50
    1.40 +
    1.41 +//The SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT value is set to -1 (the default value) - no journal size limit.
    1.42 +//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).
    1.43 +MACRO SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=-1
    1.44 +
    1.45 +//Set the locking mode to be NORMAL by default
    1.46 +MACRO SQLITE_DEFAULT_LOCKING_MODE=0
    1.47 +
    1.48 +//Multi-threaded release. The database handles cannot be shared between threads.
    1.49 +MACRO SQLITE_THREADSAFE=2
    1.50 +
    1.51 +//Enable memory management
    1.52 +MACRO SQLITE_ENABLE_MEMORY_MANAGEMENT=1
    1.53 +
    1.54 +//Disable >2GB file support
    1.55 +MACRO SQLITE_DISABLE_LFS
    1.56 +
    1.57 +//Vacuum mode = auto
    1.58 +MACRO SQLITE_DEFAULT_AUTOVACUUM=1
    1.59 +
    1.60 +//Default cache page size in bytes
    1.61 +MACRO SQLITE_DEFAULT_PAGE_SIZE=1024
    1.62 +
    1.63 +//Max cache page size in bytes
    1.64 +MACRO SQLITE_MAX_PAGE_SIZE=32768
    1.65 +
    1.66 +//Default page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
    1.67 +MACRO SQLITE_DEFAULT_CACHE_SIZE=64
    1.68 +
    1.69 +//Default temporary page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
    1.70 +MACRO SQLITE_DEFAULT_TEMP_CACHE_SIZE=32
    1.71 +
    1.72 +//Temporary files - in memory only
    1.73 +MACRO SQLITE_TEMP_STORE=3
    1.74 +
    1.75 +//Omit the capability to issue "progress" callbacks during long-running SQL statements
    1.76 +MACRO SQLITE_OMIT_PROGRESS_CALLBACK=1
    1.77 +
    1.78 +//No virtual tables
    1.79 +MACRO SQLITE_OMIT_VIRTUALTABLE=1
    1.80 +
    1.81 +//No SQLITE extensions
    1.82 +MACRO SQLITE_OMIT_LOAD_EXTENSION=1
    1.83 +
    1.84 +//Disables SQL statements tracing. Causes a linker error if enabled - ARM4, UREL build.
    1.85 +//(Vdbeapi.c, "undefined reference to `__fixunsdfdi'",
    1.86 +// the line is: "elapseTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0 - p->startTime;"
    1.87 +// there is no convertion function for "double -> uinsigned long long" cast)
    1.88 +MACRO SQLITE_OMIT_TRACE=1
    1.89 +
    1.90 +//Enable sqlite debugging
    1.91 +MACRO SQLITE_DEBUG=1
    1.92 +
    1.93 +MACRO TCLSH=1
    1.94 +
    1.95 +MACRO SQLITE_TEST=1
    1.96 +
    1.97 +MACRO SQLITE_CORE
    1.98 +
    1.99 +MACRO SQLITE_CRASH_TEST=1
   1.100 +
   1.101 +MACRO SQLITE_SERVER=1
   1.102 +
   1.103 +MACRO SQLITE_NO_SYNC=1
   1.104 +
   1.105 +MACRO SQLITE_MEMDEBUG=1