Jump to content

wxSQLite3

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Xezbeth (talk | contribs) at 15:31, 7 October 2010 (cat). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


wxSQLite3
Developer(s)Ulrich Telle
Stable release
2.0.0 / July 2010
Repository
Operating systemCross-platform
TypeDevelopment Library
LicensewxWindows Library Licence
WebsitewxSQLite3

wxSQLite3 is a C++ wrapper around the public domain SQLite 3.x database and is specifically designed for use in programs based on the wxWidgets library.

wxSQLite3 does not try to hide the underlying database, in contrary almost all special features of the current SQLite version 3.7.0 are supported, like for example the creation of user defined scalar or aggregate functions. Since SQLite stores strings in UTF-8 encoding, the wxSQLite3 methods provide automatic conversion between wxStrings and UTF-8 strings. This works best for the Unicode builds of wxWidgets. In ANSI builds the current locale conversion object (wxConvCurrent) is used for conversion to/from UTF-8. Special care has to be taken if external administration tools are used to modify the database contents, since not all of these tools operate in Unicode resp. UTF-8 mode.

Since version 1.7.0 optional support for key based database encryption (128 bit AES) is also included.

See also