1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/GROUP/sqlite3_macro.mmh Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,85 @@
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 library. 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 +//Disable the built-in test code
1.30 +MACRO SQLITE_OMIT_BUILTIN_TEST
1.31 +
1.32 +//Set the locking mode to be NORMAL by default
1.33 +MACRO SQLITE_DEFAULT_LOCKING_MODE=0
1.34 +
1.35 +//Multi-threaded release. The database handles cannot be shared between threads.
1.36 +MACRO SQLITE_THREADSAFE=2
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 +//Enable memory management
1.42 +MACRO SQLITE_ENABLE_MEMORY_MANAGEMENT=1
1.43 +
1.44 +//Disable >2GB file support
1.45 +MACRO SQLITE_DISABLE_LFS
1.46 +
1.47 +//Vacuum mode = auto
1.48 +MACRO SQLITE_DEFAULT_AUTOVACUUM=1
1.49 +
1.50 +//Default cache page size in bytes
1.51 +MACRO SQLITE_DEFAULT_PAGE_SIZE=1024
1.52 +
1.53 +//Max cache page size in bytes
1.54 +MACRO SQLITE_MAX_PAGE_SIZE=32768
1.55 +
1.56 +//Default page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
1.57 +MACRO SQLITE_DEFAULT_CACHE_SIZE=64
1.58 +
1.59 +//Default temporary page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
1.60 +MACRO SQLITE_DEFAULT_TEMP_CACHE_SIZE=32
1.61 +
1.62 +//Temporary files - in memory only
1.63 +MACRO SQLITE_TEMP_STORE=3
1.64 +
1.65 +//Omit the capability to issue "progress" callbacks during long-running SQL statements
1.66 +MACRO SQLITE_OMIT_PROGRESS_CALLBACK=1
1.67 +
1.68 +//No virtual tables
1.69 +MACRO SQLITE_OMIT_VIRTUALTABLE=1
1.70 +
1.71 +//No SQLITE extensions
1.72 +MACRO SQLITE_OMIT_LOAD_EXTENSION=1
1.73 +
1.74 +//Disables SQL statements tracing. Causes a linker error if enabled - ARM4, UREL build.
1.75 +//(Vdbeapi.c, "undefined reference to `__fixunsdfdi'",
1.76 +// the line is: "elapseTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0 - p->startTime;"
1.77 +// there is no convertion function for "double -> uinsigned long long" cast)
1.78 +MACRO SQLITE_OMIT_TRACE=1
1.79 +
1.80 +#if defined WINS || defined WINSCW
1.81 +
1.82 +//Enable sqlite debugging
1.83 +MACRO SQLITE_DEBUG=1
1.84 +
1.85 +//Do not use WSD
1.86 +MACRO SQLITE_OMIT_WSD=1
1.87 +
1.88 +#endif //end of "#if defined WINS || defined WINSCW"