28 lines
760 B
Markdown
28 lines
760 B
Markdown
# sqlite
|
|
|
|
Koka binding for [SQLite3](https://www.sqlite.org/index.html).
|
|
|
|
This package uses the SQLite3 standard amalgamation, version 3.51.2.
|
|
The following compile-time options are enabled:
|
|
|
|
```
|
|
#define SQLITE_DQS 0
|
|
#define SQLITE_DEFAULT_MEMSTATUS 0
|
|
#define SQLITE_LIKE_DOESNT_MATCH_BLOBS
|
|
#define SQLITE_OMIT_AUTOINIT
|
|
#define SQLITE_STRICT_SUBTYPE 1
|
|
#define SQLITE_ENABLE_CARRAY
|
|
#define SQLITE_ENABLE_COLUMN_METADATA
|
|
#define SQLITE_ENABLE_DBSTAT_VTAB
|
|
#define SQLITE_ENABLE_FTS5
|
|
#define SQLITE_ENABLE_GEOPOLY
|
|
#define SQLITE_ENABLE_HIDDEN_COLUMNS
|
|
#define SQLITE_ENABLE_ICU
|
|
#define SQLITE_ENABLE_MATH_FUNCTIONS
|
|
#define SQLITE_ENABLE_NORMALIZE
|
|
#define SQLITE_ENABLE_PERCENTILE
|
|
#define SQLITE_ENABLE_RTREE
|
|
#define SQLITE_ENABLE_SESSION
|
|
#define SQLITE_SOUNDEX
|
|
```
|