aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-01-27 18:34:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-27 18:34:18 +0200
commit8c41d647fab4dfbd0a9979514f95431dfc19e00b (patch)
tree55a1634b0ccaf337ee12dc54d5b11f6c4bb4f391 /INSTALL
parent4e31e3dcf3efcc20ca3aee6f888fe3ec56ba78e3 (diff)
Detect if column metadata functions are available
For example, system-default build of SQLite doesn't have SQLITE_ENABLE_COLUMN_METADATA.
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL10
1 files changed, 7 insertions, 3 deletions
diff --git a/INSTALL b/INSTALL
index 2a55ef1..63fae36 100644
--- a/INSTALL
+++ b/INSTALL
@@ -4,9 +4,13 @@ Prerequisites
- libodb http://www.codesynthesis.com/products/odb/
- libsqlite3 http://www.sqlite.org
-If you plan to access an SQLite database from multiple threads, then
-you will need SQLite version 3.5.0 or later built with the unlock
-notify feature (SQLITE_ENABLE_UNLOCK_NOTIFY) enabled.
+If you plan to access an SQLite database from multiple threads, then you will
+need SQLite version 3.5.0 or later built with the unlock notify feature
+(SQLITE_ENABLE_UNLOCK_NOTIFY) enabled.
+
+If you plant to use SQLite incremental BLOB/TEXT I/O support, then you will
+need SQLite version 3.4.0 or later built with the column metadata functions
+(SQLITE_ENABLE_COLUMN_METADATA) enabled.
Building on UNIX