File tree Expand file tree Collapse file tree 6 files changed +5074
-3088
lines changed Expand file tree Collapse file tree 6 files changed +5074
-3088
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Version 1.0.0 - May 3 2015
57
57
Added Statement::getErrorCode()
58
58
Added Statement::getColumnName(aIndex)
59
59
Added Statement::getColumnOriginName(aIndex)
60
-
60
+
61
61
Version 1.1.0 - May 18 2015
62
62
Fixed valgrind error on Database destructor
63
63
Added Database::loadExtension
@@ -74,8 +74,9 @@ Version 1.3.0 - November 1 2015
74
74
Further improvements to README
75
75
Added Backup class
76
76
77
- Version 1.3.1 - ? 2016
77
+ Version 1.3.1 - February 10 2016
78
78
Swith Linux/Mac build to the provided SQLite3 C library
79
- Update SQLite3 from 3.8.8.3 to latest 3.9 .2 (2015-11-02 )
79
+ Update SQLite3 from 3.8.8.3 to latest 3.10 .2 (2016-01-20 )
80
80
Remove warnings
81
81
Remove biicode support (defunct service, servers will shutdown the 16th of February 2016)
82
+
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ or copy at http://opensource.org/licenses/MIT)
29
29
30
30
SQLite is a library that implements a serverless transactional SQL database engine.
31
31
It is the most widely deployed SQL database engine in the world.
32
- The source code for SQLite is in the public domain.
32
+ All of the code and documentation in SQLite has been dedicated to the public domain by the authors .
33
33
http://www.sqlite.org/about.html
34
34
35
35
### The goals of SQLiteC++ are:
Original file line number Diff line number Diff line change 38
38
* with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same
39
39
* numbers used in [SQLITECPP_VERSION].
40
40
*/
41
- #define SQLITECPP_VERSION "1.3.0 "
42
- #define SQLITECPP_VERSION_NUMBER 1003000
41
+ #define SQLITECPP_VERSION "1.3.1 "
42
+ #define SQLITECPP_VERSION_NUMBER 1003001
Original file line number Diff line number Diff line change 1
- "sqlite3.c" and "sqlite3.h" files from sqlite-amalgamation-3090200.zip (SQLite 3.9.2 2015-11-02)
1
+ sqlite3
2
+ -------
3
+
4
+ "sqlite3.c" and "sqlite3.h" files from sqlite-amalgamation-3090200.zip (SQLite 3.10.2 2016-01-20)
2
5
3
6
Those files are provided for easy setup and compatibility under Windows/Linux/MacOS.
4
7
They are used by default by the CMake build.
5
8
6
9
Use -DSQLITECPP_INTERNAL_SQLITE=OFF to link against the Linux "libsqlite3-dev" package instead.
10
+
11
+ ### License:
12
+
13
+ All of the code and documentation in SQLite has been dedicated to the public domain by the authors.
14
+
You can’t perform that action at this time.
0 commit comments