ANN: wxSQLite3 3.2.0 released

Do you like to promote your wxWidgets based application or component!? Post it here and let's see what the critics have to say. Also, if you found that ONE wx component the world needs to know about, put it here for future reference.
Post Reply
utelle
Moderator
Moderator
Posts: 1125
Joined: Tue Jul 05, 2005 10:00 pm
Location: Cologne, Germany
Contact:

ANN: wxSQLite3 3.2.0 released

Post 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
dqf88
Experienced Solver
Experienced Solver
Posts: 55
Joined: Fri Aug 10, 2012 9:59 am

Re: ANN: wxSQLite3 3.2.0 released

Post 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"
utelle
Moderator
Moderator
Posts: 1125
Joined: Tue Jul 05, 2005 10:00 pm
Location: Cologne, Germany
Contact:

Re: ANN: wxSQLite3 3.2.0 released

Post 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
dqf88
Experienced Solver
Experienced Solver
Posts: 55
Joined: Fri Aug 10, 2012 9:59 am

Re: ANN: wxSQLite3 3.2.0 released

Post by dqf88 »

Thanks
Post Reply