Page 1 of 1

ANN: wxSQLite3 3.2.0 released

Posted: Thu Dec 25, 2014 7:10 pm
by utelle
Version 3.2.0 of wxSQLite3 has been released. It supports version 3.8.7.4 of SQLite. This version is compatible with wxWidgets 2.8.12 and wxWidgets 3.0.2.

What's new in this release:
  • Added support for the SQLite user authentication module
Further Release Info

The wxSQLite3 file release contains the doxygen generated documentation.

The complete C source code for building SQLite with support for 128 resp. 256 bit AES encryption is included. For convenience the SQLite amalgamation source code is included, too. Additionally the source code of the optional SQL extension functions module is included as well.

The file release for Windows additionally contains version 3.8.7.4 of the SQLite DLL in 3 different flavors:
  • the original unmodified DLL,
  • DLL supporting optional database file encryption using 128 bit AES encryption, and
  • DLL supporting optional database file encryption using 256 bit AES encryption.
Additionally a precompiled SQLite shell with encryption support for Windows is included.

Feedback is welcome.

Regards,

Ulrich

Re: ANN: wxSQLite3 3.2.0 released

Posted: Tue May 26, 2015 4:49 am
by dqf88
When I compile the source code, this error comes up. How to solve the problem? thanks

wxsqlite3\sqlite3\secure\src\sqlite3.c:14222:31: error: #if with no expression

point to "#if SQLITE_USER_AUTHENTICATION"

Re: ANN: wxSQLite3 3.2.0 released

Posted: Wed May 27, 2015 5:09 pm
by utelle
dqf88 wrote:When I compile the source code, this error comes up. How to solve the problem? thanks

wxsqlite3\sqlite3\secure\src\sqlite3.c:14222:31: error: #if with no expression

point to "#if SQLITE_USER_AUTHENTICATION"
Thanks for reporting this issue. Fortunately it's easy to fix. Just change line 10 in file sqlite3secure.c by appending a blank and a one:

#define SQLITE_USER_AUTHENTICATION 1

that is, lines 9 to 11 should look like:

Code: Select all

#ifndef SQLITE_USER_AUTHENTICATION
#define SQLITE_USER_AUTHENTICATION 1
#endif
Regards,

Ulrich

Re: ANN: wxSQLite3 3.2.0 released

Posted: Thu May 28, 2015 12:25 am
by dqf88
Thanks