Sébastien Rombauts
b4a932e48a
sqlite3_db_config() not using nullptr: cannot pass object of non-POD type 'std::__1::nullptr_t' through variadic function
2017-12-20 15:37:37 +01:00
Sébastien Rombauts
86985dfd1f
Fix nullptr detection with AppleClang
2017-12-17 21:42:23 +01:00
Sébastien Rombauts
4f32da182c
Add my Utils.h file to define nullptr on C++98 and C++03 compilers
2017-12-13 10:34:55 +01:00
Sébastien Rombauts
5479cc09bf
Merge pull request #139 from fekir/clean_destructors
...
Remove unnecessary noexcept identifier from destructors
2017-08-22 11:07:03 +02:00
fekir
1fd32277c1
Remove unnecessary noexcept identifier from destructors
2017-08-21 22:01:21 +02:00
Sébastien Rombauts
926ebdab8f
Merge pull request #137 from fekir/remove_noexcept
...
Remove noexcept
2017-08-21 11:12:16 +02:00
fekir
db156e6282
Remove noexcept from setBusyTimeout since it may throw (it is also documented)
2017-08-18 20:20:55 +02:00
drivehappy
d39ff3475e
Fixing tab indentation to use spaces.
2017-08-03 15:36:26 -07:00
drivehappy
6adc4cd5a8
Fixing unused parameter warning under Clang.
2017-08-03 13:34:16 -07:00
drivehappy
218aca1b13
Fixing warning under MSVC.
2017-08-03 13:33:08 -07:00
Timothy Rae
400ab71fa3
Fix unused parameter warning
2017-03-31 12:22:48 +09:00
Timothy Rae
4c339031f0
Remove const from Database::isUnencrypted() return type
...
Compiling with gcc pedantic mode was leading to a warning: "type qualifiers ignored on function return type"
2017-03-31 12:12:46 +09:00
Jorrit Wronski
dbd31fb56b
Fixed some compiler warnings
2016-12-23 14:57:09 +01:00
Jorrit Wronski
d26bd2cb8a
Added tests for the encrypted database
2016-12-23 14:54:02 +01:00
Jorrit Wronski
498525bb26
Final modifications for cpplint and gcc
2016-12-23 14:20:54 +01:00
Jorrit Wronski
f5a25167a4
Debugging GCC build errors remotely is not fun...
2016-12-23 14:16:37 +01:00
Jorrit Wronski
a7d5ea4c2b
Trying to gcc happy
2016-12-23 14:06:36 +01:00
Jorrit Wronski
823828fc9e
Made encryption test static and fixed the encryption docs
2016-12-23 13:52:59 +01:00
Jorrit Wronski
02f8fe19c0
Fixed some documentation and corrected the encryption detection.
2016-12-23 08:02:13 +01:00
Jorrit Wronski
685ff293c5
moved the key handling to a new function, added a check for an encrypted database
2016-12-22 17:52:06 +01:00
Jorrit Wronski
611ab22458
Added ability to open encrypted databases.
2016-12-01 23:37:22 +01:00
Mikhail Komarov
51885d7aa6
Redundant const specifier removed
2016-09-09 13:31:36 +03:00
Sébastien Rombauts
da725ed1cf
Fix compiler warning (unused variable)
2016-07-26 17:44:24 +02:00
Sébastien Rombauts
2b384d1441
Fix #94 warning: "'extern' variable has an initializer"
2016-07-26 07:39:35 +02:00
Sébastien Rombauts
648ffe01e8
Add Database::VERSION, getLibVersion() and getLibVersionNumber()
...
Usefull to get SQLite3 version without including sqlite3.h in application code
2016-07-25 21:53:47 +02:00
Sébastien Rombauts
f77b707206
Revert recent switch from uint32_t/int64_t to use int/unsigned/long/long long and fix #93
2016-07-19 10:56:08 +02:00
Sébastien Rombauts
401b7361ed
Renamed errmsg() and getErrStr() methods to getErrorMsg() and getErrorStr()
2016-07-13 18:37:22 +02:00
Sébastien Rombauts
fd8f50bdd9
Remove last #include <sqlite3.h> from a header : add a few public constants
...
- Move #include <sqlite3.h> from Exception.h to a new corresponding .cpp
- Add SQLite::OPEN_READONLY...
2016-07-13 17:16:41 +02:00
Sébastien Rombauts
fb5508921a
Move #include <sqlite3.h> from Database.h to the .cpp
2016-07-08 17:07:59 +02:00
Sébastien Rombauts
646d25ca95
Switch from sqlite3_int64 to int64_t
2016-07-05 11:05:16 +02:00
Sébastien Rombauts
0cdb40d614
Use the new SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION from SQLite 3.13 for security reason
2016-06-30 21:48:40 +02:00
Sébastien Rombauts
0c43747065
Add unit tests for statement bindings + removed an assert() for ~Transaction()
2016-06-30 11:35:28 +02:00
Douglas Heriot
2cd31179f4
Use new Exception constructors everywhere appropriate.
...
Fix compiling with C++11.
Added public assessor methods to Exception class.
Added more Exception constructors as needed.
2016-05-26 12:34:14 +10:00
Sébastien Rombauts
b7b440de5d
Fix #73 Wrong exception thrown by Database constructor
...
- switched from sqlite3_errmsg() to sqlite3_errstr() where applicable
2015-11-10 18:32:24 +01:00
Aurelien ALBERT
5a8a6e243e
Removed a warning in release build with Visual Studio
2015-05-21 10:52:46 +02:00
ncr
99db2f8bdb
Added conditional support for extension loading
2015-05-16 17:42:45 +03:00
Richard Jones
368049a613
Added support for extension loading
2015-05-08 09:47:12 +01:00
Sébastien Rombauts
318f742b5c
Revert use sqlite_errstr instead of sqlite3_errmsg that fixed #48
...
- sqlite3_errstr() is new from SQLite v3.7.15, not supported on Ubuntu 12.04
which is what is used for continuous integration with Travis CI
- Only case of error is SQLITE_BUSY: "database is locked" (some statements are not finalized)
so use this generic string instead
2015-05-06 09:36:15 +02:00
Onur Aslan
e55fffefd7
Use sqlite_errstr instead of sqlite3_errmsg
...
mpSQLite is free'd with sqlite3_close. It's no more accesible.
Fixes : #48
2015-05-06 00:22:43 +03:00
Sébastien Rombauts
09db07ccc7
Updated version to 1.0.0 changelog and copyright date
2015-05-03 23:32:57 +02:00
Sébastien Rombauts
e537195625
Fix #47 setBusyTimeout in constructor
...
- add corresponding Unit Test
2015-05-03 23:32:50 +02:00
Sébastien Rombauts
31dbcda9ad
Minor fixes to comments and an API
2015-05-03 23:32:14 +02:00
Sébastien Rombauts
acaed41465
setBusyTimeout() now uses check() and throw in case of error
...
- add unit test for setBusyTimeout()
- add unit test for in memory databases
2015-05-03 23:29:31 +02:00
Sébastien Rombauts
78ea5b254f
Removed all meaningless (void) from method definitions
2014-03-13 21:56:28 +01:00
Sébastien Rombauts
3af95da230
Added comments and test arround Database::exec() method
2014-03-13 21:44:07 +01:00
Sébastien Rombauts
6d8b808320
Fixed many cpplint warnings
2014-03-07 13:12:31 +01:00
Sébastien Rombauts
7bfaafecba
Moved include files out of the src/ dir, to an include/ dir
...
+ started a void test file
2014-03-04 23:04:38 +01:00
Sébastien Rombauts
b0e9104047
Using the C++11 "noexcept" keyword instead of "throw()"
...
- added a compatibility #define for older compilers
2014-02-26 18:36:18 +01:00
Wesley J. Landaker
4dfb3cc4b0
Support opening a database with a custom VFS.
2014-02-18 09:18:40 -07:00
Sébastien Rombauts
d6f5029f6c
Some small cleanup and uniformisation arround the new createFunction() API
2014-02-06 22:48:35 +01:00