sl@0
|
1 |
// Copyright (c) 2006-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.lib Database management - SQLite library. Common
|
sl@0
|
15 |
// sqlite macro definitions.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
//Symbian OS port
|
sl@0
|
24 |
MACRO SQLITE_OS_OTHER=1
|
sl@0
|
25 |
MACRO SQLITE_OS_SYMBIAN=1
|
sl@0
|
26 |
|
sl@0
|
27 |
//The SQLite initialization will be made explicitly inside the sqlite3SymbianLibInit() function implementation
|
sl@0
|
28 |
MACRO SQLITE_OMIT_AUTOINIT=1
|
sl@0
|
29 |
|
sl@0
|
30 |
//Symbian - memory allocation functions
|
sl@0
|
31 |
MACRO malloc=sqlite3SymbianMalloc
|
sl@0
|
32 |
MACRO free=sqlite3SymbianFree
|
sl@0
|
33 |
MACRO realloc=sqlite3SymbianRealloc
|
sl@0
|
34 |
|
sl@0
|
35 |
//Disable the built-in test code
|
sl@0
|
36 |
MACRO SQLITE_OMIT_BUILTIN_TEST
|
sl@0
|
37 |
|
sl@0
|
38 |
//The default SQLITE_MAX_COLUMN value is 2000. It causes regression test failures.
|
sl@0
|
39 |
MACRO SQLITE_MAX_COLUMN=4096
|
sl@0
|
40 |
|
sl@0
|
41 |
//The default SQLITE_MAX_LENGTH value is 1000000000. It causes an artificial limit on the size of a BLOB object
|
sl@0
|
42 |
MACRO SQLITE_MAX_LENGTH=2147483647
|
sl@0
|
43 |
|
sl@0
|
44 |
//The default SQLITE_MAX_EXPR_DEPTH value is 1000. It causes regression test failures.
|
sl@0
|
45 |
MACRO SQLITE_MAX_EXPR_DEPTH=250
|
sl@0
|
46 |
|
sl@0
|
47 |
//The default SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT value is -1 - no journal size limit.
|
sl@0
|
48 |
MACRO SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=65536
|
sl@0
|
49 |
|
sl@0
|
50 |
//Set the locking mode to be EXCLUSIVE by default
|
sl@0
|
51 |
MACRO SQLITE_DEFAULT_LOCKING_MODE=1
|
sl@0
|
52 |
|
sl@0
|
53 |
//No mutexes. SQLITE_MUTEX_NOOP should not be used here. Its value will be defined automatically by SQLite.
|
sl@0
|
54 |
MACRO SQLITE_THREADSAFE=0
|
sl@0
|
55 |
|
sl@0
|
56 |
//Enable memory management
|
sl@0
|
57 |
MACRO SQLITE_ENABLE_MEMORY_MANAGEMENT=1
|
sl@0
|
58 |
|
sl@0
|
59 |
//Vacuum mode = incremental
|
sl@0
|
60 |
MACRO SQLITE_DEFAULT_AUTOVACUUM=2
|
sl@0
|
61 |
|
sl@0
|
62 |
//Default cache page size in bytes
|
sl@0
|
63 |
MACRO SQLITE_DEFAULT_PAGE_SIZE=1024
|
sl@0
|
64 |
|
sl@0
|
65 |
//Max cache page size in bytes
|
sl@0
|
66 |
MACRO SQLITE_MAX_PAGE_SIZE=32768
|
sl@0
|
67 |
|
sl@0
|
68 |
//Default page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
|
sl@0
|
69 |
MACRO SQLITE_DEFAULT_CACHE_SIZE=1024
|
sl@0
|
70 |
|
sl@0
|
71 |
//Default temporary page cache size in pages, each of SQLITE_DEFAULT_PAGE_SIZE size
|
sl@0
|
72 |
MACRO SQLITE_DEFAULT_TEMP_CACHE_SIZE=32
|
sl@0
|
73 |
|
sl@0
|
74 |
//Temporary files - in memory only
|
sl@0
|
75 |
MACRO SQLITE_TEMP_STORE=3
|
sl@0
|
76 |
|
sl@0
|
77 |
//Omit the capability to issue "progress" callbacks during long-running SQL statements
|
sl@0
|
78 |
MACRO SQLITE_OMIT_PROGRESS_CALLBACK=1
|
sl@0
|
79 |
|
sl@0
|
80 |
//No virtual tables
|
sl@0
|
81 |
MACRO SQLITE_OMIT_VIRTUALTABLE=1
|
sl@0
|
82 |
|
sl@0
|
83 |
//No SQLITE extensions
|
sl@0
|
84 |
MACRO SQLITE_OMIT_LOAD_EXTENSION=1
|
sl@0
|
85 |
|
sl@0
|
86 |
//The maximum value of a host parameter number (the default value is 999)
|
sl@0
|
87 |
MACRO SQLITE_MAX_VARIABLE_NUMBER=32767
|
sl@0
|
88 |
|
sl@0
|
89 |
//Disables SQL statements tracing. Causes a linker error if enabled - ARM4, UREL build.
|
sl@0
|
90 |
//(Vdbeapi.c, "undefined reference to `__fixunsdfdi'",
|
sl@0
|
91 |
// the line is: "elapseTime = (rNow - (int)rNow)*3600.0*24.0*1000000000.0 - p->startTime;"
|
sl@0
|
92 |
// there is no convertion function for "double -> uinsigned long long" cast)
|
sl@0
|
93 |
MACRO SQLITE_OMIT_TRACE=1
|
sl@0
|
94 |
|
sl@0
|
95 |
#if defined WINS || defined WINSCW
|
sl@0
|
96 |
|
sl@0
|
97 |
//Enable sqlite debugging
|
sl@0
|
98 |
MACRO SQLITE_DEBUG
|
sl@0
|
99 |
|
sl@0
|
100 |
#endif //end of "#if defined WINS || defined WINSCW"
|