From 92bbeccffe53e13f31867e8c93a6179944def150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Fri, 3 Feb 2017 15:09:34 +0100 Subject: [PATCH] Fix #113 SQLite 3.7.15 minimum for sqlite3_errstr() SQLite 3.7.15 was release in 2012-12-12 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d9d995..7c0b134 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ And the following IDEs/Compilers - 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) -- 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), with the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata).