Talk:Bryan Man and WxSQLite3: Difference between pages

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
(Difference between pages)
Content deleted Content added
m moved Talk:Brian Man to Talk:Bryan Man: Corrected the spelling
 
Update latest date and version
 
Line 1: Line 1:
{{lowercase|title=wxSQLite3}}
{{Football|class=Stub|importance=}}

{{WPBiography
{{Infobox_Software |
|living=yes
name = wxSQLite3|
|class=Stub
logo = [[Image:wxSQLite3 logo.png|120px]]|
|priority=
screenshot = |
|sports-work-group=yes
caption = |
|listas=Man, Brian
developer = Ulrich Telle |
latest_release_version = 1.9.1|
latest_release_date = September 2008 |
operating_system = [[Cross-platform]] |
genre = Development Library |
license = [http://www.wxwidgets.org/newlicen.htm wxWindows Library Licence] |
website = [http://wxcode.sourceforge.net/components/wxsqlite3/ wxSQLite3] |
}}
}}

'''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.5.4 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 ==
* [[SQLite]]

== External links ==
* [http://wxcode.sourceforge.net/components/wxsqlite3/ wxSQLite3 home page]
* [http://www.dynaset.org/dogusanh/download.html Lua binding for wxSQLite3]

{{comp-stub}}

Revision as of 07:38, 11 October 2008


wxSQLite3
Developer(s)Ulrich Telle
Stable release
1.9.1 / September 2008
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.5.4 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

External links