Fix #113 SQLite 3.7.15 minimum for sqlite3_errstr()

SQLite 3.7.15 was release in 2012-12-12
This commit is contained in:
Sébastien Rombauts 2017-02-03 15:09:34 +01:00 committed by GitHub
parent f00d69c9ad
commit 92bbeccffe

View File

@ -81,7 +81,7 @@ And the following IDEs/Compilers
- an STL implementation (even an old one, like the one provided with VC6 should work) - an STL implementation (even an old one, like the one provided with VC6 should work)
- exception support (the class Exception inherits from std::runtime_error) - exception support (the class Exception inherits from std::runtime_error)
- the SQLite library, either by linking to it dynamicaly or statically (install the libsqlite3-dev package under Debian/Ubuntu/Mint Linux), - the SQLite library (3.7.15 minimum from 2012-12-12) either by linking to it dynamicaly or statically (install the libsqlite3-dev package under Debian/Ubuntu/Mint Linux),
or by adding its source file in your project code base (source code provided in src/sqlite3 for Windows), or by adding its source file in your project code base (source code provided in src/sqlite3 for Windows),
with the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata). with the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata).