Relocate Sqlite3 sources, upgrade to 3.8.0.2
Move sqlite source to a separate location, and build with an intermediate library target. This permits us to set compile options easier, including an important one, NDEBUG, which improves performance. Sqlite 3.8.0.2 also includes an updated query planner which may improve some queries, to be tested.
This commit is contained in:
parent
5a4b9c617c
commit
0206de2d2c
8 changed files with 12801 additions and 9446 deletions
4
3rdparty/CMakeLists.txt
vendored
Normal file
4
3rdparty/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
|
||||||
|
if (NOT SYSTEM_SQLITE)
|
||||||
|
add_subdirectory(sqlite3)
|
||||||
|
endif()
|
4
3rdparty/sqlite3/CMakeLists.txt
vendored
Normal file
4
3rdparty/sqlite3/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
|
||||||
|
add_definitions(-DSQLITE_OMIT_LOAD_EXTENSION)
|
||||||
|
add_definitions(-DNDEBUG)
|
||||||
|
add_library(fgsqlite3 sqlite3.c)
|
|
@ -107,9 +107,9 @@ extern "C" {
|
||||||
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
||||||
** [sqlite_version()] and [sqlite_source_id()].
|
** [sqlite_version()] and [sqlite_source_id()].
|
||||||
*/
|
*/
|
||||||
#define SQLITE_VERSION "3.7.13"
|
#define SQLITE_VERSION "3.8.0.2"
|
||||||
#define SQLITE_VERSION_NUMBER 3007013
|
#define SQLITE_VERSION_NUMBER 3008000
|
||||||
#define SQLITE_SOURCE_ID "2012-06-11 02:05:22 f5b5a13f7394dc143aa136f1d4faba6839eaa6dc"
|
#define SQLITE_SOURCE_ID "2013-09-03 17:11:13 7dd4968f235d6e1ca9547cda9cf3bd570e1609ef"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Run-Time Library Version Numbers
|
** CAPI3REF: Run-Time Library Version Numbers
|
||||||
|
@ -219,7 +219,8 @@ SQLITE_API int sqlite3_threadsafe(void);
|
||||||
** the opaque structure named "sqlite3". It is useful to think of an sqlite3
|
** the opaque structure named "sqlite3". It is useful to think of an sqlite3
|
||||||
** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and
|
** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and
|
||||||
** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
|
** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
|
||||||
** is its destructor. There are many other interfaces (such as
|
** and [sqlite3_close_v2()] are its destructors. There are many other
|
||||||
|
** interfaces (such as
|
||||||
** [sqlite3_prepare_v2()], [sqlite3_create_function()], and
|
** [sqlite3_prepare_v2()], [sqlite3_create_function()], and
|
||||||
** [sqlite3_busy_timeout()] to name but three) that are methods on an
|
** [sqlite3_busy_timeout()] to name but three) that are methods on an
|
||||||
** sqlite3 object.
|
** sqlite3 object.
|
||||||
|
@ -266,28 +267,46 @@ typedef sqlite_uint64 sqlite3_uint64;
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Closing A Database Connection
|
** CAPI3REF: Closing A Database Connection
|
||||||
**
|
**
|
||||||
** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
|
** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
|
||||||
** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
|
** for the [sqlite3] object.
|
||||||
** successfully destroyed and all associated resources are deallocated.
|
** ^Calls to sqlite3_close() and sqlite3_close_v2() return SQLITE_OK if
|
||||||
|
** the [sqlite3] object is successfully destroyed and all associated
|
||||||
|
** resources are deallocated.
|
||||||
**
|
**
|
||||||
** Applications must [sqlite3_finalize | finalize] all [prepared statements]
|
** ^If the database connection is associated with unfinalized prepared
|
||||||
** and [sqlite3_blob_close | close] all [BLOB handles] associated with
|
** statements or unfinished sqlite3_backup objects then sqlite3_close()
|
||||||
** the [sqlite3] object prior to attempting to close the object. ^If
|
** will leave the database connection open and return [SQLITE_BUSY].
|
||||||
** sqlite3_close() is called on a [database connection] that still has
|
** ^If sqlite3_close_v2() is called with unfinalized prepared statements
|
||||||
** outstanding [prepared statements] or [BLOB handles], then it returns
|
** and unfinished sqlite3_backups, then the database connection becomes
|
||||||
** SQLITE_BUSY.
|
** an unusable "zombie" which will automatically be deallocated when the
|
||||||
|
** last prepared statement is finalized or the last sqlite3_backup is
|
||||||
|
** finished. The sqlite3_close_v2() interface is intended for use with
|
||||||
|
** host languages that are garbage collected, and where the order in which
|
||||||
|
** destructors are called is arbitrary.
|
||||||
**
|
**
|
||||||
** ^If [sqlite3_close()] is invoked while a transaction is open,
|
** Applications should [sqlite3_finalize | finalize] all [prepared statements],
|
||||||
|
** [sqlite3_blob_close | close] all [BLOB handles], and
|
||||||
|
** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated
|
||||||
|
** with the [sqlite3] object prior to attempting to close the object. ^If
|
||||||
|
** sqlite3_close_v2() is called on a [database connection] that still has
|
||||||
|
** outstanding [prepared statements], [BLOB handles], and/or
|
||||||
|
** [sqlite3_backup] objects then it returns SQLITE_OK but the deallocation
|
||||||
|
** of resources is deferred until all [prepared statements], [BLOB handles],
|
||||||
|
** and [sqlite3_backup] objects are also destroyed.
|
||||||
|
**
|
||||||
|
** ^If an [sqlite3] object is destroyed while a transaction is open,
|
||||||
** the transaction is automatically rolled back.
|
** the transaction is automatically rolled back.
|
||||||
**
|
**
|
||||||
** The C parameter to [sqlite3_close(C)] must be either a NULL
|
** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
|
||||||
|
** must be either a NULL
|
||||||
** pointer or an [sqlite3] object pointer obtained
|
** pointer or an [sqlite3] object pointer obtained
|
||||||
** from [sqlite3_open()], [sqlite3_open16()], or
|
** from [sqlite3_open()], [sqlite3_open16()], or
|
||||||
** [sqlite3_open_v2()], and not previously closed.
|
** [sqlite3_open_v2()], and not previously closed.
|
||||||
** ^Calling sqlite3_close() with a NULL pointer argument is a
|
** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
|
||||||
** harmless no-op.
|
** argument is a harmless no-op.
|
||||||
*/
|
*/
|
||||||
SQLITE_API int sqlite3_close(sqlite3 *);
|
SQLITE_API int sqlite3_close(sqlite3*);
|
||||||
|
SQLITE_API int sqlite3_close_v2(sqlite3*);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** The type for a callback function.
|
** The type for a callback function.
|
||||||
|
@ -406,6 +425,8 @@ SQLITE_API int sqlite3_exec(
|
||||||
#define SQLITE_FORMAT 24 /* Auxiliary database format error */
|
#define SQLITE_FORMAT 24 /* Auxiliary database format error */
|
||||||
#define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */
|
#define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */
|
||||||
#define SQLITE_NOTADB 26 /* File opened that is not a database file */
|
#define SQLITE_NOTADB 26 /* File opened that is not a database file */
|
||||||
|
#define SQLITE_NOTICE 27 /* Notifications from sqlite3_log() */
|
||||||
|
#define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */
|
||||||
#define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
|
#define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
|
||||||
#define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
|
#define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
|
||||||
/* end-of-error-codes */
|
/* end-of-error-codes */
|
||||||
|
@ -455,14 +476,32 @@ SQLITE_API int sqlite3_exec(
|
||||||
#define SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8))
|
#define SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8))
|
||||||
#define SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8))
|
#define SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8))
|
||||||
#define SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8))
|
#define SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8))
|
||||||
|
#define SQLITE_IOERR_DELETE_NOENT (SQLITE_IOERR | (23<<8))
|
||||||
|
#define SQLITE_IOERR_MMAP (SQLITE_IOERR | (24<<8))
|
||||||
|
#define SQLITE_IOERR_GETTEMPPATH (SQLITE_IOERR | (25<<8))
|
||||||
#define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
|
#define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
|
||||||
#define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8))
|
#define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8))
|
||||||
|
#define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8))
|
||||||
#define SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8))
|
#define SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8))
|
||||||
#define SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8))
|
#define SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8))
|
||||||
|
#define SQLITE_CANTOPEN_FULLPATH (SQLITE_CANTOPEN | (3<<8))
|
||||||
#define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8))
|
#define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8))
|
||||||
#define SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8))
|
#define SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8))
|
||||||
#define SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8))
|
#define SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8))
|
||||||
|
#define SQLITE_READONLY_ROLLBACK (SQLITE_READONLY | (3<<8))
|
||||||
#define SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8))
|
#define SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_CHECK (SQLITE_CONSTRAINT | (1<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_COMMITHOOK (SQLITE_CONSTRAINT | (2<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_FOREIGNKEY (SQLITE_CONSTRAINT | (3<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_FUNCTION (SQLITE_CONSTRAINT | (4<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_NOTNULL (SQLITE_CONSTRAINT | (5<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_PRIMARYKEY (SQLITE_CONSTRAINT | (6<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_TRIGGER (SQLITE_CONSTRAINT | (7<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_UNIQUE (SQLITE_CONSTRAINT | (8<<8))
|
||||||
|
#define SQLITE_CONSTRAINT_VTAB (SQLITE_CONSTRAINT | (9<<8))
|
||||||
|
#define SQLITE_NOTICE_RECOVER_WAL (SQLITE_NOTICE | (1<<8))
|
||||||
|
#define SQLITE_NOTICE_RECOVER_ROLLBACK (SQLITE_NOTICE | (2<<8))
|
||||||
|
#define SQLITE_WARNING_AUTOINDEX (SQLITE_WARNING | (1<<8))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Flags For File Open Operations
|
** CAPI3REF: Flags For File Open Operations
|
||||||
|
@ -498,7 +537,7 @@ SQLITE_API int sqlite3_exec(
|
||||||
** CAPI3REF: Device Characteristics
|
** CAPI3REF: Device Characteristics
|
||||||
**
|
**
|
||||||
** The xDeviceCharacteristics method of the [sqlite3_io_methods]
|
** The xDeviceCharacteristics method of the [sqlite3_io_methods]
|
||||||
** object returns an integer which is a vector of the these
|
** object returns an integer which is a vector of these
|
||||||
** bit values expressing I/O characteristics of the mass storage
|
** bit values expressing I/O characteristics of the mass storage
|
||||||
** device that holds the file that the [sqlite3_io_methods]
|
** device that holds the file that the [sqlite3_io_methods]
|
||||||
** refers to.
|
** refers to.
|
||||||
|
@ -702,6 +741,9 @@ struct sqlite3_io_methods {
|
||||||
void (*xShmBarrier)(sqlite3_file*);
|
void (*xShmBarrier)(sqlite3_file*);
|
||||||
int (*xShmUnmap)(sqlite3_file*, int deleteFlag);
|
int (*xShmUnmap)(sqlite3_file*, int deleteFlag);
|
||||||
/* Methods above are valid for version 2 */
|
/* Methods above are valid for version 2 */
|
||||||
|
int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
|
||||||
|
int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);
|
||||||
|
/* Methods above are valid for version 3 */
|
||||||
/* Additional methods may be added in future releases */
|
/* Additional methods may be added in future releases */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -836,6 +878,38 @@ struct sqlite3_io_methods {
|
||||||
** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA]
|
** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA]
|
||||||
** file control occurs at the beginning of pragma statement analysis and so
|
** file control occurs at the beginning of pragma statement analysis and so
|
||||||
** it is able to override built-in [PRAGMA] statements.
|
** it is able to override built-in [PRAGMA] statements.
|
||||||
|
**
|
||||||
|
** <li>[[SQLITE_FCNTL_BUSYHANDLER]]
|
||||||
|
** ^The [SQLITE_FCNTL_BUSYHANDLER]
|
||||||
|
** file-control may be invoked by SQLite on the database file handle
|
||||||
|
** shortly after it is opened in order to provide a custom VFS with access
|
||||||
|
** to the connections busy-handler callback. The argument is of type (void **)
|
||||||
|
** - an array of two (void *) values. The first (void *) actually points
|
||||||
|
** to a function of type (int (*)(void *)). In order to invoke the connections
|
||||||
|
** busy-handler, this function should be invoked with the second (void *) in
|
||||||
|
** the array as the only argument. If it returns non-zero, then the operation
|
||||||
|
** should be retried. If it returns zero, the custom VFS should abandon the
|
||||||
|
** current operation.
|
||||||
|
**
|
||||||
|
** <li>[[SQLITE_FCNTL_TEMPFILENAME]]
|
||||||
|
** ^Application can invoke the [SQLITE_FCNTL_TEMPFILENAME] file-control
|
||||||
|
** to have SQLite generate a
|
||||||
|
** temporary filename using the same algorithm that is followed to generate
|
||||||
|
** temporary filenames for TEMP tables and other internal uses. The
|
||||||
|
** argument should be a char** which will be filled with the filename
|
||||||
|
** written into memory obtained from [sqlite3_malloc()]. The caller should
|
||||||
|
** invoke [sqlite3_free()] on the result to avoid a memory leak.
|
||||||
|
**
|
||||||
|
** <li>[[SQLITE_FCNTL_MMAP_SIZE]]
|
||||||
|
** The [SQLITE_FCNTL_MMAP_SIZE] file control is used to query or set the
|
||||||
|
** maximum number of bytes that will be used for memory-mapped I/O.
|
||||||
|
** The argument is a pointer to a value of type sqlite3_int64 that
|
||||||
|
** is an advisory maximum number of bytes in the file to memory map. The
|
||||||
|
** pointer is overwritten with the old value. The limit is not changed if
|
||||||
|
** the value originally pointed to is negative, and so the current limit
|
||||||
|
** can be queried by passing in a pointer to a negative number. This
|
||||||
|
** file-control is used internally to implement [PRAGMA mmap_size].
|
||||||
|
**
|
||||||
** </ul>
|
** </ul>
|
||||||
*/
|
*/
|
||||||
#define SQLITE_FCNTL_LOCKSTATE 1
|
#define SQLITE_FCNTL_LOCKSTATE 1
|
||||||
|
@ -852,6 +926,9 @@ struct sqlite3_io_methods {
|
||||||
#define SQLITE_FCNTL_VFSNAME 12
|
#define SQLITE_FCNTL_VFSNAME 12
|
||||||
#define SQLITE_FCNTL_POWERSAFE_OVERWRITE 13
|
#define SQLITE_FCNTL_POWERSAFE_OVERWRITE 13
|
||||||
#define SQLITE_FCNTL_PRAGMA 14
|
#define SQLITE_FCNTL_PRAGMA 14
|
||||||
|
#define SQLITE_FCNTL_BUSYHANDLER 15
|
||||||
|
#define SQLITE_FCNTL_TEMPFILENAME 16
|
||||||
|
#define SQLITE_FCNTL_MMAP_SIZE 18
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Mutex Handle
|
** CAPI3REF: Mutex Handle
|
||||||
|
@ -1518,7 +1595,9 @@ struct sqlite3_mem_methods {
|
||||||
** page cache implementation into that object.)^ </dd>
|
** page cache implementation into that object.)^ </dd>
|
||||||
**
|
**
|
||||||
** [[SQLITE_CONFIG_LOG]] <dt>SQLITE_CONFIG_LOG</dt>
|
** [[SQLITE_CONFIG_LOG]] <dt>SQLITE_CONFIG_LOG</dt>
|
||||||
** <dd> ^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a
|
** <dd> The SQLITE_CONFIG_LOG option is used to configure the SQLite
|
||||||
|
** global [error log].
|
||||||
|
** (^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a
|
||||||
** function with a call signature of void(*)(void*,int,const char*),
|
** function with a call signature of void(*)(void*,int,const char*),
|
||||||
** and a pointer to void. ^If the function pointer is not NULL, it is
|
** and a pointer to void. ^If the function pointer is not NULL, it is
|
||||||
** invoked by [sqlite3_log()] to process each logging event. ^If the
|
** invoked by [sqlite3_log()] to process each logging event. ^If the
|
||||||
|
@ -1548,10 +1627,54 @@ struct sqlite3_mem_methods {
|
||||||
** disabled. The default value may be changed by compiling with the
|
** disabled. The default value may be changed by compiling with the
|
||||||
** [SQLITE_USE_URI] symbol defined.
|
** [SQLITE_USE_URI] symbol defined.
|
||||||
**
|
**
|
||||||
|
** [[SQLITE_CONFIG_COVERING_INDEX_SCAN]] <dt>SQLITE_CONFIG_COVERING_INDEX_SCAN
|
||||||
|
** <dd> This option takes a single integer argument which is interpreted as
|
||||||
|
** a boolean in order to enable or disable the use of covering indices for
|
||||||
|
** full table scans in the query optimizer. The default setting is determined
|
||||||
|
** by the [SQLITE_ALLOW_COVERING_INDEX_SCAN] compile-time option, or is "on"
|
||||||
|
** if that compile-time option is omitted.
|
||||||
|
** The ability to disable the use of covering indices for full table scans
|
||||||
|
** is because some incorrectly coded legacy applications might malfunction
|
||||||
|
** malfunction when the optimization is enabled. Providing the ability to
|
||||||
|
** disable the optimization allows the older, buggy application code to work
|
||||||
|
** without change even with newer versions of SQLite.
|
||||||
|
**
|
||||||
** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]]
|
** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]]
|
||||||
** <dt>SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE
|
** <dt>SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE
|
||||||
** <dd> These options are obsolete and should not be used by new code.
|
** <dd> These options are obsolete and should not be used by new code.
|
||||||
** They are retained for backwards compatibility but are now no-ops.
|
** They are retained for backwards compatibility but are now no-ops.
|
||||||
|
** </dd>
|
||||||
|
**
|
||||||
|
** [[SQLITE_CONFIG_SQLLOG]]
|
||||||
|
** <dt>SQLITE_CONFIG_SQLLOG
|
||||||
|
** <dd>This option is only available if sqlite is compiled with the
|
||||||
|
** [SQLITE_ENABLE_SQLLOG] pre-processor macro defined. The first argument should
|
||||||
|
** be a pointer to a function of type void(*)(void*,sqlite3*,const char*, int).
|
||||||
|
** The second should be of type (void*). The callback is invoked by the library
|
||||||
|
** in three separate circumstances, identified by the value passed as the
|
||||||
|
** fourth parameter. If the fourth parameter is 0, then the database connection
|
||||||
|
** passed as the second argument has just been opened. The third argument
|
||||||
|
** points to a buffer containing the name of the main database file. If the
|
||||||
|
** fourth parameter is 1, then the SQL statement that the third parameter
|
||||||
|
** points to has just been executed. Or, if the fourth parameter is 2, then
|
||||||
|
** the connection being passed as the second parameter is being closed. The
|
||||||
|
** third parameter is passed NULL In this case. An example of using this
|
||||||
|
** configuration option can be seen in the "test_sqllog.c" source file in
|
||||||
|
** the canonical SQLite source tree.</dd>
|
||||||
|
**
|
||||||
|
** [[SQLITE_CONFIG_MMAP_SIZE]]
|
||||||
|
** <dt>SQLITE_CONFIG_MMAP_SIZE
|
||||||
|
** <dd>SQLITE_CONFIG_MMAP_SIZE takes two 64-bit integer (sqlite3_int64) values
|
||||||
|
** that are the default mmap size limit (the default setting for
|
||||||
|
** [PRAGMA mmap_size]) and the maximum allowed mmap size limit.
|
||||||
|
** The default setting can be overridden by each database connection using
|
||||||
|
** either the [PRAGMA mmap_size] command, or by using the
|
||||||
|
** [SQLITE_FCNTL_MMAP_SIZE] file control. The maximum allowed mmap size
|
||||||
|
** cannot be changed at run-time. Nor may the maximum allowed mmap size
|
||||||
|
** exceed the compile-time maximum mmap size set by the
|
||||||
|
** [SQLITE_MAX_MMAP_SIZE] compile-time option.
|
||||||
|
** If either argument to this option is negative, then that argument is
|
||||||
|
** changed to its compile-time default.
|
||||||
** </dl>
|
** </dl>
|
||||||
*/
|
*/
|
||||||
#define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */
|
#define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */
|
||||||
|
@ -1573,6 +1696,9 @@ struct sqlite3_mem_methods {
|
||||||
#define SQLITE_CONFIG_URI 17 /* int */
|
#define SQLITE_CONFIG_URI 17 /* int */
|
||||||
#define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */
|
#define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */
|
||||||
#define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */
|
#define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */
|
||||||
|
#define SQLITE_CONFIG_COVERING_INDEX_SCAN 20 /* int */
|
||||||
|
#define SQLITE_CONFIG_SQLLOG 21 /* xSqllog, void* */
|
||||||
|
#define SQLITE_CONFIG_MMAP_SIZE 22 /* sqlite3_int64, sqlite3_int64 */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Database Connection Configuration Options
|
** CAPI3REF: Database Connection Configuration Options
|
||||||
|
@ -2406,6 +2532,9 @@ SQLITE_API int sqlite3_set_authorizer(
|
||||||
** as each triggered subprogram is entered. The callbacks for triggers
|
** as each triggered subprogram is entered. The callbacks for triggers
|
||||||
** contain a UTF-8 SQL comment that identifies the trigger.)^
|
** contain a UTF-8 SQL comment that identifies the trigger.)^
|
||||||
**
|
**
|
||||||
|
** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit
|
||||||
|
** the length of [bound parameter] expansion in the output of sqlite3_trace().
|
||||||
|
**
|
||||||
** ^The callback function registered by sqlite3_profile() is invoked
|
** ^The callback function registered by sqlite3_profile() is invoked
|
||||||
** as each SQL statement finishes. ^The profile callback contains
|
** as each SQL statement finishes. ^The profile callback contains
|
||||||
** the original statement text and an estimate of wall-clock time
|
** the original statement text and an estimate of wall-clock time
|
||||||
|
@ -2431,9 +2560,10 @@ SQLITE_API SQLITE_EXPERIMENTAL void *sqlite3_profile(sqlite3*,
|
||||||
** interface is to keep a GUI updated during a large query.
|
** interface is to keep a GUI updated during a large query.
|
||||||
**
|
**
|
||||||
** ^The parameter P is passed through as the only parameter to the
|
** ^The parameter P is passed through as the only parameter to the
|
||||||
** callback function X. ^The parameter N is the number of
|
** callback function X. ^The parameter N is the approximate number of
|
||||||
** [virtual machine instructions] that are evaluated between successive
|
** [virtual machine instructions] that are evaluated between successive
|
||||||
** invocations of the callback X.
|
** invocations of the callback X. ^If N is less than one then the progress
|
||||||
|
** handler is disabled.
|
||||||
**
|
**
|
||||||
** ^Only a single progress handler may be defined at one time per
|
** ^Only a single progress handler may be defined at one time per
|
||||||
** [database connection]; setting a new progress handler cancels the
|
** [database connection]; setting a new progress handler cancels the
|
||||||
|
@ -2581,7 +2711,7 @@ SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
|
||||||
** an error)^.
|
** an error)^.
|
||||||
** ^If "ro" is specified, then the database is opened for read-only
|
** ^If "ro" is specified, then the database is opened for read-only
|
||||||
** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the
|
** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the
|
||||||
** third argument to sqlite3_prepare_v2(). ^If the mode option is set to
|
** third argument to sqlite3_open_v2(). ^If the mode option is set to
|
||||||
** "rw", then the database is opened for read-write (but not create)
|
** "rw", then the database is opened for read-write (but not create)
|
||||||
** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had
|
** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had
|
||||||
** been set. ^Value "rwc" is equivalent to setting both
|
** been set. ^Value "rwc" is equivalent to setting both
|
||||||
|
@ -2597,7 +2727,7 @@ SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
|
||||||
** sqlite3_open_v2(). ^Setting the cache parameter to "private" is
|
** sqlite3_open_v2(). ^Setting the cache parameter to "private" is
|
||||||
** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit.
|
** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit.
|
||||||
** ^If sqlite3_open_v2() is used and the "cache" parameter is present in
|
** ^If sqlite3_open_v2() is used and the "cache" parameter is present in
|
||||||
** a URI filename, its value overrides any behaviour requested by setting
|
** a URI filename, its value overrides any behavior requested by setting
|
||||||
** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag.
|
** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag.
|
||||||
** </ul>
|
** </ul>
|
||||||
**
|
**
|
||||||
|
@ -2648,6 +2778,12 @@ SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
|
||||||
** codepage is currently defined. Filenames containing international
|
** codepage is currently defined. Filenames containing international
|
||||||
** characters must be converted to UTF-8 prior to passing them into
|
** characters must be converted to UTF-8 prior to passing them into
|
||||||
** sqlite3_open() or sqlite3_open_v2().
|
** sqlite3_open() or sqlite3_open_v2().
|
||||||
|
**
|
||||||
|
** <b>Note to Windows Runtime users:</b> The temporary directory must be set
|
||||||
|
** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various
|
||||||
|
** features that require the use of temporary files may fail.
|
||||||
|
**
|
||||||
|
** See also: [sqlite3_temp_directory]
|
||||||
*/
|
*/
|
||||||
SQLITE_API int sqlite3_open(
|
SQLITE_API int sqlite3_open(
|
||||||
const char *filename, /* Database filename (UTF-8) */
|
const char *filename, /* Database filename (UTF-8) */
|
||||||
|
@ -2727,6 +2863,11 @@ SQLITE_API sqlite3_int64 sqlite3_uri_int64(const char*, const char*, sqlite3_int
|
||||||
** However, the error string might be overwritten or deallocated by
|
** However, the error string might be overwritten or deallocated by
|
||||||
** subsequent calls to other SQLite interface functions.)^
|
** subsequent calls to other SQLite interface functions.)^
|
||||||
**
|
**
|
||||||
|
** ^The sqlite3_errstr() interface returns the English-language text
|
||||||
|
** that describes the [result code], as UTF-8.
|
||||||
|
** ^(Memory to hold the error message string is managed internally
|
||||||
|
** and must not be freed by the application)^.
|
||||||
|
**
|
||||||
** When the serialized [threading mode] is in use, it might be the
|
** When the serialized [threading mode] is in use, it might be the
|
||||||
** case that a second error occurs on a separate thread in between
|
** case that a second error occurs on a separate thread in between
|
||||||
** the time of the first error and the call to these interfaces.
|
** the time of the first error and the call to these interfaces.
|
||||||
|
@ -2745,6 +2886,7 @@ SQLITE_API int sqlite3_errcode(sqlite3 *db);
|
||||||
SQLITE_API int sqlite3_extended_errcode(sqlite3 *db);
|
SQLITE_API int sqlite3_extended_errcode(sqlite3 *db);
|
||||||
SQLITE_API const char *sqlite3_errmsg(sqlite3*);
|
SQLITE_API const char *sqlite3_errmsg(sqlite3*);
|
||||||
SQLITE_API const void *sqlite3_errmsg16(sqlite3*);
|
SQLITE_API const void *sqlite3_errmsg16(sqlite3*);
|
||||||
|
SQLITE_API const char *sqlite3_errstr(int);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: SQL Statement Object
|
** CAPI3REF: SQL Statement Object
|
||||||
|
@ -2932,7 +3074,8 @@ SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal);
|
||||||
** <li>
|
** <li>
|
||||||
** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
|
** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
|
||||||
** always used to do, [sqlite3_step()] will automatically recompile the SQL
|
** always used to do, [sqlite3_step()] will automatically recompile the SQL
|
||||||
** statement and try to run it again.
|
** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY]
|
||||||
|
** retries will occur before sqlite3_step() gives up and returns an error.
|
||||||
** </li>
|
** </li>
|
||||||
**
|
**
|
||||||
** <li>
|
** <li>
|
||||||
|
@ -3136,12 +3279,18 @@ typedef struct sqlite3_context sqlite3_context;
|
||||||
** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999).
|
** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999).
|
||||||
**
|
**
|
||||||
** ^The third argument is the value to bind to the parameter.
|
** ^The third argument is the value to bind to the parameter.
|
||||||
|
** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16()
|
||||||
|
** or sqlite3_bind_blob() is a NULL pointer then the fourth parameter
|
||||||
|
** is ignored and the end result is the same as sqlite3_bind_null().
|
||||||
**
|
**
|
||||||
** ^(In those routines that have a fourth argument, its value is the
|
** ^(In those routines that have a fourth argument, its value is the
|
||||||
** number of bytes in the parameter. To be clear: the value is the
|
** number of bytes in the parameter. To be clear: the value is the
|
||||||
** number of <u>bytes</u> in the value, not the number of characters.)^
|
** number of <u>bytes</u> in the value, not the number of characters.)^
|
||||||
** ^If the fourth parameter is negative, the length of the string is
|
** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16()
|
||||||
|
** is negative, then the length of the string is
|
||||||
** the number of bytes up to the first zero terminator.
|
** the number of bytes up to the first zero terminator.
|
||||||
|
** If the fourth parameter to sqlite3_bind_blob() is negative, then
|
||||||
|
** the behavior is undefined.
|
||||||
** If a non-negative fourth parameter is provided to sqlite3_bind_text()
|
** If a non-negative fourth parameter is provided to sqlite3_bind_text()
|
||||||
** or sqlite3_bind_text16() then that parameter must be the byte offset
|
** or sqlite3_bind_text16() then that parameter must be the byte offset
|
||||||
** where the NUL terminator would occur assuming the string were NUL
|
** where the NUL terminator would occur assuming the string were NUL
|
||||||
|
@ -3900,7 +4049,8 @@ SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*);
|
||||||
SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*);
|
SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*);
|
||||||
SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void);
|
SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void);
|
||||||
SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void);
|
SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void);
|
||||||
SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),void*,sqlite3_int64);
|
SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),
|
||||||
|
void*,sqlite3_int64);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -3980,14 +4130,17 @@ SQLITE_API int sqlite3_value_numeric_type(sqlite3_value*);
|
||||||
** In those cases, sqlite3_aggregate_context() might be called for the
|
** In those cases, sqlite3_aggregate_context() might be called for the
|
||||||
** first time from within xFinal().)^
|
** first time from within xFinal().)^
|
||||||
**
|
**
|
||||||
** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer if N is
|
** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer
|
||||||
** less than or equal to zero or if a memory allocate error occurs.
|
** when first called if N is less than or equal to zero or if a memory
|
||||||
|
** allocate error occurs.
|
||||||
**
|
**
|
||||||
** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is
|
** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is
|
||||||
** determined by the N parameter on first successful call. Changing the
|
** determined by the N parameter on first successful call. Changing the
|
||||||
** value of N in subsequent call to sqlite3_aggregate_context() within
|
** value of N in subsequent call to sqlite3_aggregate_context() within
|
||||||
** the same aggregate function instance will not resize the memory
|
** the same aggregate function instance will not resize the memory
|
||||||
** allocation.)^
|
** allocation.)^ Within the xFinal callback, it is customary to set
|
||||||
|
** N=0 in calls to sqlite3_aggregate_context(C,N) so that no
|
||||||
|
** pointless memory allocations occur.
|
||||||
**
|
**
|
||||||
** ^SQLite automatically frees the memory allocated by
|
** ^SQLite automatically frees the memory allocated by
|
||||||
** sqlite3_aggregate_context() when the aggregate query concludes.
|
** sqlite3_aggregate_context() when the aggregate query concludes.
|
||||||
|
@ -4030,41 +4183,49 @@ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Function Auxiliary Data
|
** CAPI3REF: Function Auxiliary Data
|
||||||
**
|
**
|
||||||
** The following two functions may be used by scalar SQL functions to
|
** These functions may be used by (non-aggregate) SQL functions to
|
||||||
** associate metadata with argument values. If the same value is passed to
|
** associate metadata with argument values. If the same value is passed to
|
||||||
** multiple invocations of the same SQL function during query execution, under
|
** multiple invocations of the same SQL function during query execution, under
|
||||||
** some circumstances the associated metadata may be preserved. This may
|
** some circumstances the associated metadata may be preserved. An example
|
||||||
** be used, for example, to add a regular-expression matching scalar
|
** of where this might be useful is in a regular-expression matching
|
||||||
** function. The compiled version of the regular expression is stored as
|
** function. The compiled version of the regular expression can be stored as
|
||||||
** metadata associated with the SQL value passed as the regular expression
|
** metadata associated with the pattern string.
|
||||||
** pattern. The compiled regular expression can be reused on multiple
|
** Then as long as the pattern string remains the same,
|
||||||
** invocations of the same function so that the original pattern string
|
** the compiled regular expression can be reused on multiple
|
||||||
** does not need to be recompiled on each invocation.
|
** invocations of the same function.
|
||||||
**
|
**
|
||||||
** ^The sqlite3_get_auxdata() interface returns a pointer to the metadata
|
** ^The sqlite3_get_auxdata() interface returns a pointer to the metadata
|
||||||
** associated by the sqlite3_set_auxdata() function with the Nth argument
|
** associated by the sqlite3_set_auxdata() function with the Nth argument
|
||||||
** value to the application-defined function. ^If no metadata has been ever
|
** value to the application-defined function. ^If there is no metadata
|
||||||
** been set for the Nth argument of the function, or if the corresponding
|
** associated with the function argument, this sqlite3_get_auxdata() interface
|
||||||
** function parameter has changed since the meta-data was set,
|
** returns a NULL pointer.
|
||||||
** then sqlite3_get_auxdata() returns a NULL pointer.
|
|
||||||
**
|
**
|
||||||
** ^The sqlite3_set_auxdata() interface saves the metadata
|
** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th
|
||||||
** pointed to by its 3rd parameter as the metadata for the N-th
|
** argument of the application-defined function. ^Subsequent
|
||||||
** argument of the application-defined function. Subsequent
|
** calls to sqlite3_get_auxdata(C,N) return P from the most recent
|
||||||
** calls to sqlite3_get_auxdata() might return this data, if it has
|
** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or
|
||||||
** not been destroyed.
|
** NULL if the metadata has been discarded.
|
||||||
** ^If it is not NULL, SQLite will invoke the destructor
|
** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL,
|
||||||
** function given by the 4th parameter to sqlite3_set_auxdata() on
|
** SQLite will invoke the destructor function X with parameter P exactly
|
||||||
** the metadata when the corresponding function parameter changes
|
** once, when the metadata is discarded.
|
||||||
** or when the SQL statement completes, whichever comes first.
|
** SQLite is free to discard the metadata at any time, including: <ul>
|
||||||
|
** <li> when the corresponding function parameter changes, or
|
||||||
|
** <li> when [sqlite3_reset()] or [sqlite3_finalize()] is called for the
|
||||||
|
** SQL statement, or
|
||||||
|
** <li> when sqlite3_set_auxdata() is invoked again on the same parameter, or
|
||||||
|
** <li> during the original sqlite3_set_auxdata() call when a memory
|
||||||
|
** allocation error occurs. </ul>)^
|
||||||
**
|
**
|
||||||
** SQLite is free to call the destructor and drop metadata on any
|
** Note the last bullet in particular. The destructor X in
|
||||||
** parameter of any function at any time. ^The only guarantee is that
|
** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the
|
||||||
** the destructor will be called before the metadata is dropped.
|
** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata()
|
||||||
|
** should be called near the end of the function implementation and the
|
||||||
|
** function implementation should not make any use of P after
|
||||||
|
** sqlite3_set_auxdata() has been called.
|
||||||
**
|
**
|
||||||
** ^(In practice, metadata is preserved between function calls for
|
** ^(In practice, metadata is preserved between function calls for
|
||||||
** expressions that are constant at compile time. This includes literal
|
** function parameters that are compile-time constants, including literal
|
||||||
** values and [parameters].)^
|
** values and [parameters] and expressions composed from the same.)^
|
||||||
**
|
**
|
||||||
** These routines must be called from the same thread in which
|
** These routines must be called from the same thread in which
|
||||||
** the SQL function is running.
|
** the SQL function is running.
|
||||||
|
@ -4085,7 +4246,7 @@ SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(voi
|
||||||
** the content before returning.
|
** the content before returning.
|
||||||
**
|
**
|
||||||
** The typedef is necessary to work around problems in certain
|
** The typedef is necessary to work around problems in certain
|
||||||
** C++ compilers. See ticket #2191.
|
** C++ compilers.
|
||||||
*/
|
*/
|
||||||
typedef void (*sqlite3_destructor_type)(void*);
|
typedef void (*sqlite3_destructor_type)(void*);
|
||||||
#define SQLITE_STATIC ((sqlite3_destructor_type)0)
|
#define SQLITE_STATIC ((sqlite3_destructor_type)0)
|
||||||
|
@ -4138,11 +4299,11 @@ typedef void (*sqlite3_destructor_type)(void*);
|
||||||
** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error()
|
** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error()
|
||||||
** or sqlite3_result_error16() resets the error code to SQLITE_ERROR.
|
** or sqlite3_result_error16() resets the error code to SQLITE_ERROR.
|
||||||
**
|
**
|
||||||
** ^The sqlite3_result_toobig() interface causes SQLite to throw an error
|
** ^The sqlite3_result_error_toobig() interface causes SQLite to throw an
|
||||||
** indicating that a string or BLOB is too long to represent.
|
** error indicating that a string or BLOB is too long to represent.
|
||||||
**
|
**
|
||||||
** ^The sqlite3_result_nomem() interface causes SQLite to throw an error
|
** ^The sqlite3_result_error_nomem() interface causes SQLite to throw an
|
||||||
** indicating that a memory allocation failed.
|
** error indicating that a memory allocation failed.
|
||||||
**
|
**
|
||||||
** ^The sqlite3_result_int() interface sets the return value
|
** ^The sqlite3_result_int() interface sets the return value
|
||||||
** of the application-defined function to be the 32-bit signed integer
|
** of the application-defined function to be the 32-bit signed integer
|
||||||
|
@ -4369,6 +4530,11 @@ SQLITE_API int sqlite3_key(
|
||||||
sqlite3 *db, /* Database to be rekeyed */
|
sqlite3 *db, /* Database to be rekeyed */
|
||||||
const void *pKey, int nKey /* The key */
|
const void *pKey, int nKey /* The key */
|
||||||
);
|
);
|
||||||
|
SQLITE_API int sqlite3_key_v2(
|
||||||
|
sqlite3 *db, /* Database to be rekeyed */
|
||||||
|
const char *zDbName, /* Name of the database */
|
||||||
|
const void *pKey, int nKey /* The key */
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Change the key on an open database. If the current database is not
|
** Change the key on an open database. If the current database is not
|
||||||
|
@ -4382,6 +4548,11 @@ SQLITE_API int sqlite3_rekey(
|
||||||
sqlite3 *db, /* Database to be rekeyed */
|
sqlite3 *db, /* Database to be rekeyed */
|
||||||
const void *pKey, int nKey /* The new key */
|
const void *pKey, int nKey /* The new key */
|
||||||
);
|
);
|
||||||
|
SQLITE_API int sqlite3_rekey_v2(
|
||||||
|
sqlite3 *db, /* Database to be rekeyed */
|
||||||
|
const char *zDbName, /* Name of the database */
|
||||||
|
const void *pKey, int nKey /* The new key */
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Specify the activation key for a SEE database. Unless
|
** Specify the activation key for a SEE database. Unless
|
||||||
|
@ -4449,6 +4620,21 @@ SQLITE_API int sqlite3_sleep(int);
|
||||||
** Hence, if this variable is modified directly, either it should be
|
** Hence, if this variable is modified directly, either it should be
|
||||||
** made NULL or made to point to memory obtained from [sqlite3_malloc]
|
** made NULL or made to point to memory obtained from [sqlite3_malloc]
|
||||||
** or else the use of the [temp_store_directory pragma] should be avoided.
|
** or else the use of the [temp_store_directory pragma] should be avoided.
|
||||||
|
**
|
||||||
|
** <b>Note to Windows Runtime users:</b> The temporary directory must be set
|
||||||
|
** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various
|
||||||
|
** features that require the use of temporary files may fail. Here is an
|
||||||
|
** example of how to do this using C++ with the Windows Runtime:
|
||||||
|
**
|
||||||
|
** <blockquote><pre>
|
||||||
|
** LPCWSTR zPath = Windows::Storage::ApplicationData::Current->
|
||||||
|
** TemporaryFolder->Path->Data();
|
||||||
|
** char zPathBuf[MAX_PATH + 1];
|
||||||
|
** memset(zPathBuf, 0, sizeof(zPathBuf));
|
||||||
|
** WideCharToMultiByte(CP_UTF8, 0, zPath, -1, zPathBuf, sizeof(zPathBuf),
|
||||||
|
** NULL, NULL);
|
||||||
|
** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
|
||||||
|
** </pre></blockquote>
|
||||||
*/
|
*/
|
||||||
SQLITE_API SQLITE_EXTERN char *sqlite3_temp_directory;
|
SQLITE_API SQLITE_EXTERN char *sqlite3_temp_directory;
|
||||||
|
|
||||||
|
@ -4689,6 +4875,9 @@ SQLITE_API void *sqlite3_update_hook(
|
||||||
** future releases of SQLite. Applications that care about shared
|
** future releases of SQLite. Applications that care about shared
|
||||||
** cache setting should set it explicitly.
|
** cache setting should set it explicitly.
|
||||||
**
|
**
|
||||||
|
** This interface is threadsafe on processors where writing a
|
||||||
|
** 32-bit integer is atomic.
|
||||||
|
**
|
||||||
** See Also: [SQLite Shared-Cache Mode]
|
** See Also: [SQLite Shared-Cache Mode]
|
||||||
*/
|
*/
|
||||||
SQLITE_API int sqlite3_enable_shared_cache(int);
|
SQLITE_API int sqlite3_enable_shared_cache(int);
|
||||||
|
@ -4866,11 +5055,20 @@ SQLITE_API int sqlite3_table_column_metadata(
|
||||||
** ^This interface loads an SQLite extension library from the named file.
|
** ^This interface loads an SQLite extension library from the named file.
|
||||||
**
|
**
|
||||||
** ^The sqlite3_load_extension() interface attempts to load an
|
** ^The sqlite3_load_extension() interface attempts to load an
|
||||||
** SQLite extension library contained in the file zFile.
|
** [SQLite extension] library contained in the file zFile. If
|
||||||
|
** the file cannot be loaded directly, attempts are made to load
|
||||||
|
** with various operating-system specific extensions added.
|
||||||
|
** So for example, if "samplelib" cannot be loaded, then names like
|
||||||
|
** "samplelib.so" or "samplelib.dylib" or "samplelib.dll" might
|
||||||
|
** be tried also.
|
||||||
**
|
**
|
||||||
** ^The entry point is zProc.
|
** ^The entry point is zProc.
|
||||||
** ^zProc may be 0, in which case the name of the entry point
|
** ^(zProc may be 0, in which case SQLite will try to come up with an
|
||||||
** defaults to "sqlite3_extension_init".
|
** entry point name on its own. It first tries "sqlite3_extension_init".
|
||||||
|
** If that does not work, it constructs a name "sqlite3_X_init" where the
|
||||||
|
** X is consists of the lower-case equivalent of all ASCII alphabetic
|
||||||
|
** characters in the filename from the last "/" to the first following
|
||||||
|
** "." and omitting any initial "lib".)^
|
||||||
** ^The sqlite3_load_extension() interface returns
|
** ^The sqlite3_load_extension() interface returns
|
||||||
** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong.
|
** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong.
|
||||||
** ^If an error occurs and pzErrMsg is not 0, then the
|
** ^If an error occurs and pzErrMsg is not 0, then the
|
||||||
|
@ -4896,11 +5094,11 @@ SQLITE_API int sqlite3_load_extension(
|
||||||
** CAPI3REF: Enable Or Disable Extension Loading
|
** CAPI3REF: Enable Or Disable Extension Loading
|
||||||
**
|
**
|
||||||
** ^So as not to open security holes in older applications that are
|
** ^So as not to open security holes in older applications that are
|
||||||
** unprepared to deal with extension loading, and as a means of disabling
|
** unprepared to deal with [extension loading], and as a means of disabling
|
||||||
** extension loading while evaluating user-entered SQL, the following API
|
** [extension loading] while evaluating user-entered SQL, the following API
|
||||||
** is provided to turn the [sqlite3_load_extension()] mechanism on and off.
|
** is provided to turn the [sqlite3_load_extension()] mechanism on and off.
|
||||||
**
|
**
|
||||||
** ^Extension loading is off by default. See ticket #1863.
|
** ^Extension loading is off by default.
|
||||||
** ^Call the sqlite3_enable_load_extension() routine with onoff==1
|
** ^Call the sqlite3_enable_load_extension() routine with onoff==1
|
||||||
** to turn extension loading on and call it with onoff==0 to turn
|
** to turn extension loading on and call it with onoff==0 to turn
|
||||||
** it back off again.
|
** it back off again.
|
||||||
|
@ -4912,7 +5110,7 @@ SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
|
||||||
**
|
**
|
||||||
** ^This interface causes the xEntryPoint() function to be invoked for
|
** ^This interface causes the xEntryPoint() function to be invoked for
|
||||||
** each new [database connection] that is created. The idea here is that
|
** each new [database connection] that is created. The idea here is that
|
||||||
** xEntryPoint() is the entry point for a statically linked SQLite extension
|
** xEntryPoint() is the entry point for a statically linked [SQLite extension]
|
||||||
** that is to be automatically loaded into all new database connections.
|
** that is to be automatically loaded into all new database connections.
|
||||||
**
|
**
|
||||||
** ^(Even though the function prototype shows that xEntryPoint() takes
|
** ^(Even though the function prototype shows that xEntryPoint() takes
|
||||||
|
@ -4940,10 +5138,23 @@ SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
|
||||||
** on the list of automatic extensions is a harmless no-op. ^No entry point
|
** on the list of automatic extensions is a harmless no-op. ^No entry point
|
||||||
** will be called more than once for each database connection that is opened.
|
** will be called more than once for each database connection that is opened.
|
||||||
**
|
**
|
||||||
** See also: [sqlite3_reset_auto_extension()].
|
** See also: [sqlite3_reset_auto_extension()]
|
||||||
|
** and [sqlite3_cancel_auto_extension()]
|
||||||
*/
|
*/
|
||||||
SQLITE_API int sqlite3_auto_extension(void (*xEntryPoint)(void));
|
SQLITE_API int sqlite3_auto_extension(void (*xEntryPoint)(void));
|
||||||
|
|
||||||
|
/*
|
||||||
|
** CAPI3REF: Cancel Automatic Extension Loading
|
||||||
|
**
|
||||||
|
** ^The [sqlite3_cancel_auto_extension(X)] interface unregisters the
|
||||||
|
** initialization routine X that was registered using a prior call to
|
||||||
|
** [sqlite3_auto_extension(X)]. ^The [sqlite3_cancel_auto_extension(X)]
|
||||||
|
** routine returns 1 if initialization routine X was successfully
|
||||||
|
** unregistered and it returns 0 if X was not on the list of initialization
|
||||||
|
** routines.
|
||||||
|
*/
|
||||||
|
SQLITE_API int sqlite3_cancel_auto_extension(void (*xEntryPoint)(void));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Reset Automatic Extension Loading
|
** CAPI3REF: Reset Automatic Extension Loading
|
||||||
**
|
**
|
||||||
|
@ -5494,7 +5705,6 @@ SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*);
|
||||||
** implementations are available in the SQLite core:
|
** implementations are available in the SQLite core:
|
||||||
**
|
**
|
||||||
** <ul>
|
** <ul>
|
||||||
** <li> SQLITE_MUTEX_OS2
|
|
||||||
** <li> SQLITE_MUTEX_PTHREADS
|
** <li> SQLITE_MUTEX_PTHREADS
|
||||||
** <li> SQLITE_MUTEX_W32
|
** <li> SQLITE_MUTEX_W32
|
||||||
** <li> SQLITE_MUTEX_NOOP
|
** <li> SQLITE_MUTEX_NOOP
|
||||||
|
@ -5502,9 +5712,9 @@ SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*);
|
||||||
**
|
**
|
||||||
** ^The SQLITE_MUTEX_NOOP implementation is a set of routines
|
** ^The SQLITE_MUTEX_NOOP implementation is a set of routines
|
||||||
** that does no real locking and is appropriate for use in
|
** that does no real locking and is appropriate for use in
|
||||||
** a single-threaded application. ^The SQLITE_MUTEX_OS2,
|
** a single-threaded application. ^The SQLITE_MUTEX_PTHREADS and
|
||||||
** SQLITE_MUTEX_PTHREADS, and SQLITE_MUTEX_W32 implementations
|
** SQLITE_MUTEX_W32 implementations are appropriate for use on Unix
|
||||||
** are appropriate for use on OS/2, Unix, and Windows.
|
** and Windows.
|
||||||
**
|
**
|
||||||
** ^(If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor
|
** ^(If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor
|
||||||
** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex
|
** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex
|
||||||
|
@ -6057,6 +6267,12 @@ SQLITE_API int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int r
|
||||||
** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The
|
** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The
|
||||||
** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0.
|
** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0.
|
||||||
** </dd>
|
** </dd>
|
||||||
|
**
|
||||||
|
** [[SQLITE_DBSTATUS_DEFERRED_FKS]] ^(<dt>SQLITE_DBSTATUS_DEFERRED_FKS</dt>
|
||||||
|
** <dd>This parameter returns zero for the current value if and only if
|
||||||
|
** all foreign key constraints (deferred or immediate) have been
|
||||||
|
** resolved.)^ ^The highwater mark is always 0.
|
||||||
|
** </dd>
|
||||||
** </dl>
|
** </dl>
|
||||||
*/
|
*/
|
||||||
#define SQLITE_DBSTATUS_LOOKASIDE_USED 0
|
#define SQLITE_DBSTATUS_LOOKASIDE_USED 0
|
||||||
|
@ -6069,7 +6285,8 @@ SQLITE_API int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int r
|
||||||
#define SQLITE_DBSTATUS_CACHE_HIT 7
|
#define SQLITE_DBSTATUS_CACHE_HIT 7
|
||||||
#define SQLITE_DBSTATUS_CACHE_MISS 8
|
#define SQLITE_DBSTATUS_CACHE_MISS 8
|
||||||
#define SQLITE_DBSTATUS_CACHE_WRITE 9
|
#define SQLITE_DBSTATUS_CACHE_WRITE 9
|
||||||
#define SQLITE_DBSTATUS_MAX 9 /* Largest defined DBSTATUS */
|
#define SQLITE_DBSTATUS_DEFERRED_FKS 10
|
||||||
|
#define SQLITE_DBSTATUS_MAX 10 /* Largest defined DBSTATUS */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -6123,11 +6340,21 @@ SQLITE_API int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg);
|
||||||
** A non-zero value in this counter may indicate an opportunity to
|
** A non-zero value in this counter may indicate an opportunity to
|
||||||
** improvement performance by adding permanent indices that do not
|
** improvement performance by adding permanent indices that do not
|
||||||
** need to be reinitialized each time the statement is run.</dd>
|
** need to be reinitialized each time the statement is run.</dd>
|
||||||
|
**
|
||||||
|
** [[SQLITE_STMTSTATUS_VM_STEP]] <dt>SQLITE_STMTSTATUS_VM_STEP</dt>
|
||||||
|
** <dd>^This is the number of virtual machine operations executed
|
||||||
|
** by the prepared statement if that number is less than or equal
|
||||||
|
** to 2147483647. The number of virtual machine operations can be
|
||||||
|
** used as a proxy for the total work done by the prepared statement.
|
||||||
|
** If the number of virtual machine operations exceeds 2147483647
|
||||||
|
** then the value returned by this statement status code is undefined.
|
||||||
|
** </dd>
|
||||||
** </dl>
|
** </dl>
|
||||||
*/
|
*/
|
||||||
#define SQLITE_STMTSTATUS_FULLSCAN_STEP 1
|
#define SQLITE_STMTSTATUS_FULLSCAN_STEP 1
|
||||||
#define SQLITE_STMTSTATUS_SORT 2
|
#define SQLITE_STMTSTATUS_SORT 2
|
||||||
#define SQLITE_STMTSTATUS_AUTOINDEX 3
|
#define SQLITE_STMTSTATUS_AUTOINDEX 3
|
||||||
|
#define SQLITE_STMTSTATUS_VM_STEP 4
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Custom Page Cache Object
|
** CAPI3REF: Custom Page Cache Object
|
||||||
|
@ -6264,7 +6491,7 @@ struct sqlite3_pcache_page {
|
||||||
** parameter to help it determined what action to take:
|
** parameter to help it determined what action to take:
|
||||||
**
|
**
|
||||||
** <table border=1 width=85% align=center>
|
** <table border=1 width=85% align=center>
|
||||||
** <tr><th> createFlag <th> Behaviour when page is not already in cache
|
** <tr><th> createFlag <th> Behavior when page is not already in cache
|
||||||
** <tr><td> 0 <td> Do not allocate a new page. Return NULL.
|
** <tr><td> 0 <td> Do not allocate a new page. Return NULL.
|
||||||
** <tr><td> 1 <td> Allocate a new page if it easy and convenient to do so.
|
** <tr><td> 1 <td> Allocate a new page if it easy and convenient to do so.
|
||||||
** Otherwise return NULL.
|
** Otherwise return NULL.
|
||||||
|
@ -6693,10 +6920,25 @@ SQLITE_API int sqlite3_unlock_notify(
|
||||||
SQLITE_API int sqlite3_stricmp(const char *, const char *);
|
SQLITE_API int sqlite3_stricmp(const char *, const char *);
|
||||||
SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
|
SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
|
||||||
|
|
||||||
|
/*
|
||||||
|
** CAPI3REF: String Globbing
|
||||||
|
*
|
||||||
|
** ^The [sqlite3_strglob(P,X)] interface returns zero if string X matches
|
||||||
|
** the glob pattern P, and it returns non-zero if string X does not match
|
||||||
|
** the glob pattern P. ^The definition of glob pattern matching used in
|
||||||
|
** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the
|
||||||
|
** SQL dialect used by SQLite. ^The sqlite3_strglob(P,X) function is case
|
||||||
|
** sensitive.
|
||||||
|
**
|
||||||
|
** Note that this routine returns zero on a match and non-zero if the strings
|
||||||
|
** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()].
|
||||||
|
*/
|
||||||
|
SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Error Logging Interface
|
** CAPI3REF: Error Logging Interface
|
||||||
**
|
**
|
||||||
** ^The [sqlite3_log()] interface writes a message into the error log
|
** ^The [sqlite3_log()] interface writes a message into the [error log]
|
||||||
** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
|
** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
|
||||||
** ^If logging is enabled, the zFormat string and subsequent arguments are
|
** ^If logging is enabled, the zFormat string and subsequent arguments are
|
||||||
** used with [sqlite3_snprintf()] to generate the final output string.
|
** used with [sqlite3_snprintf()] to generate the final output string.
|
||||||
|
@ -6991,7 +7233,7 @@ SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *);
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} /* End of the 'extern "C"' block */
|
} /* End of the 'extern "C"' block */
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif /* _SQLITE3_H_ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** 2010 August 30
|
** 2010 August 30
|
21802
src/Navaids/sqlite3.c → 3rdparty/sqlite3/sqlite3.c
vendored
21802
src/Navaids/sqlite3.c → 3rdparty/sqlite3/sqlite3.c
vendored
File diff suppressed because it is too large
Load diff
|
@ -234,15 +234,24 @@ if(ENABLE_LIBSVN)
|
||||||
endif(LIBSVN_FOUND)
|
endif(LIBSVN_FOUND)
|
||||||
endif(ENABLE_LIBSVN)
|
endif(ENABLE_LIBSVN)
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
## Sqlite3 setup
|
||||||
|
|
||||||
if (SYSTEM_SQLITE)
|
if (SYSTEM_SQLITE)
|
||||||
find_package(SQLite3 REQUIRED)
|
find_package(SQLite3 REQUIRED)
|
||||||
set(CMAKE_REQUIRED_INCLUDES ${SQLITE3_INCLUDED_DIR})
|
|
||||||
message(STATUS "Using system SQLite3 library")
|
message(STATUS "Using system SQLite3 library")
|
||||||
|
else()
|
||||||
|
set(SQLITE3_INCLUDED_DIR "${CMAKE_SOURCE_DIR}/3rdparty/sqlite3")
|
||||||
|
# this target is defined in src/Navaids/CMakeLists.txt
|
||||||
|
list(APPEND SQLITE3_LIBRARY fgsqlite3)
|
||||||
endif (SYSTEM_SQLITE)
|
endif (SYSTEM_SQLITE)
|
||||||
|
|
||||||
# Sqlite always depends on the threading lib
|
# Sqlite always depends on the threading lib
|
||||||
list(APPEND SQLITE3_LIBRARY ${CMAKE_THREAD_LIBS_INIT})
|
list(APPEND SQLITE3_LIBRARY ${CMAKE_THREAD_LIBS_INIT})
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
find_package(PLIB REQUIRED puaux pu js fnt)
|
find_package(PLIB REQUIRED puaux pu js fnt)
|
||||||
|
|
||||||
if (EMBEDDED_SIMGEAR)
|
if (EMBEDDED_SIMGEAR)
|
||||||
|
@ -346,7 +355,8 @@ include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS}
|
||||||
${OPENGL_INCLUDE_DIR}
|
${OPENGL_INCLUDE_DIR}
|
||||||
${OPENAL_INCLUDE_DIR}
|
${OPENAL_INCLUDE_DIR}
|
||||||
${SIMGEAR_INCLUDE_DIR}
|
${SIMGEAR_INCLUDE_DIR}
|
||||||
${PLIB_INCLUDE_DIR} )
|
${PLIB_INCLUDE_DIR}
|
||||||
|
${SQLITE3_INCLUDED_DIR} )
|
||||||
|
|
||||||
include_directories(${PROJECT_SOURCE_DIR})
|
include_directories(${PROJECT_SOURCE_DIR})
|
||||||
include_directories(${PROJECT_SOURCE_DIR}/src)
|
include_directories(${PROJECT_SOURCE_DIR}/src)
|
||||||
|
@ -386,6 +396,7 @@ if (EMBEDDED_SIMGEAR)
|
||||||
include_directories(${PROJECT_BINARY_DIR}/simgear)
|
include_directories(${PROJECT_BINARY_DIR}/simgear)
|
||||||
endif(EMBEDDED_SIMGEAR)
|
endif(EMBEDDED_SIMGEAR)
|
||||||
|
|
||||||
|
add_subdirectory(3rdparty)
|
||||||
add_subdirectory(utils)
|
add_subdirectory(utils)
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
add_subdirectory(man)
|
add_subdirectory(man)
|
||||||
|
|
|
@ -69,11 +69,6 @@ source_group("Main\\Headers" FILES ${HEADERS})
|
||||||
source_group("Main\\Sources" FILES ${SOURCES})
|
source_group("Main\\Sources" FILES ${SOURCES})
|
||||||
add_executable(fgfs ${SOURCES} ${FG_SOURCES} ${FG_HEADERS} ${HEADERS})
|
add_executable(fgfs ${SOURCES} ${FG_SOURCES} ${FG_HEADERS} ${HEADERS})
|
||||||
|
|
||||||
# disable sqlite3 dynamic lib support
|
|
||||||
# this should really be a SOURCE property, but the way we handle
|
|
||||||
# Fcomponent sources is making that tricky
|
|
||||||
add_definitions(-DSQLITE_OMIT_LOAD_EXTENSION)
|
|
||||||
|
|
||||||
get_property(FG_LIBS GLOBAL PROPERTY FG_LIBS)
|
get_property(FG_LIBS GLOBAL PROPERTY FG_LIBS)
|
||||||
#message(STATUS "fg libs ${FG_LIBS}")
|
#message(STATUS "fg libs ${FG_LIBS}")
|
||||||
#message(STATUS "OSG libs ${OPENSCENEGRAPH_LIBRARIES}")
|
#message(STATUS "OSG libs ${OPENSCENEGRAPH_LIBRARIES}")
|
||||||
|
|
|
@ -40,9 +40,4 @@ set(HEADERS
|
||||||
PolyLine.hxx
|
PolyLine.hxx
|
||||||
)
|
)
|
||||||
|
|
||||||
if (NOT SYSTEM_SQLITE)
|
|
||||||
list(APPEND SOURCES sqlite3.c)
|
|
||||||
list(APPEND HEADERS sqlite3.h)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
flightgear_component(Navaids "${SOURCES}" "${HEADERS}")
|
flightgear_component(Navaids "${SOURCES}" "${HEADERS}")
|
||||||
|
|
|
@ -23,11 +23,6 @@
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// to ensure compatability between sqlite3_int64 and PositionedID,
|
|
||||||
// force the type used by sqlite to match PositionedID explicitly
|
|
||||||
#define SQLITE_INT64_TYPE int64_t
|
|
||||||
#define SQLITE_UINT64_TYPE uint64_t
|
|
||||||
|
|
||||||
#include "NavDataCache.hxx"
|
#include "NavDataCache.hxx"
|
||||||
|
|
||||||
// std
|
// std
|
||||||
|
@ -37,7 +32,16 @@
|
||||||
// boost
|
// boost
|
||||||
#include <boost/foreach.hpp>
|
#include <boost/foreach.hpp>
|
||||||
|
|
||||||
#include "sqlite3.h"
|
// to ensure compatability between sqlite3_int64 and PositionedID,
|
||||||
|
// force the type used by sqlite to match PositionedID explicitly
|
||||||
|
#define SQLITE_INT64_TYPE int64_t
|
||||||
|
#define SQLITE_UINT64_TYPE uint64_t
|
||||||
|
|
||||||
|
#ifdef SYSTEM_SQLITE
|
||||||
|
#include "sqlite3.h"
|
||||||
|
#else
|
||||||
|
#include "fg_sqlite3.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
// SimGear
|
// SimGear
|
||||||
#include <simgear/sg_inlines.h>
|
#include <simgear/sg_inlines.h>
|
||||||
|
|
Loading…
Reference in a new issue