OLD | NEW |
1 /* | 1 /* |
2 ** 2001 September 15 | 2 ** 2001 September 15 |
3 ** | 3 ** |
4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
6 ** | 6 ** |
7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
10 ** | 10 ** |
11 ************************************************************************* | 11 ************************************************************************* |
12 ** Main file for the SQLite library. The routines in this file | 12 ** Main file for the SQLite library. The routines in this file |
13 ** implement the programmer interface to the library. Routines in | 13 ** implement the programmer interface to the library. Routines in |
14 ** other files are for internal use by SQLite and should not be | 14 ** other files are for internal use by SQLite and should not be |
15 ** accessed by users of the library. | 15 ** accessed by users of the library. |
16 */ | 16 */ |
17 #include "sqliteInt.h" | 17 #include "sqliteInt.h" |
18 | 18 |
19 #ifdef SQLITE_ENABLE_FTS3 | 19 #ifdef SQLITE_ENABLE_FTS3 |
20 # include "fts3.h" | 20 # include "../../ext/fts3/fts3.h" |
21 #endif | 21 #endif |
22 #ifdef SQLITE_ENABLE_RTREE | 22 #ifdef SQLITE_ENABLE_RTREE |
23 # include "rtree.h" | 23 # include "rtree.h" |
24 #endif | 24 #endif |
25 #ifdef SQLITE_ENABLE_ICU | 25 #ifdef SQLITE_ENABLE_ICU |
26 # include "sqliteicu.h" | 26 # include "sqliteicu.h" |
27 #endif | 27 #endif |
28 | 28 |
29 /* | 29 /* |
30 ** The version of the library | 30 ** The version of the library |
(...skipping 2248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2279 sqlite3BtreeSetPageSize(db->aDb[0].pBt, 0, x, 0); | 2279 sqlite3BtreeSetPageSize(db->aDb[0].pBt, 0, x, 0); |
2280 sqlite3_mutex_leave(db->mutex); | 2280 sqlite3_mutex_leave(db->mutex); |
2281 break; | 2281 break; |
2282 } | 2282 } |
2283 | 2283 |
2284 } | 2284 } |
2285 va_end(ap); | 2285 va_end(ap); |
2286 #endif /* SQLITE_OMIT_BUILTIN_TEST */ | 2286 #endif /* SQLITE_OMIT_BUILTIN_TEST */ |
2287 return rc; | 2287 return rc; |
2288 } | 2288 } |
OLD | NEW |