1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
THE SQLITE3CC LIBRARY
=====================
The sqlite3cc library is a C++ wrapper around the C interface of sqlite3. It is
intended to make the use of sqlite3 more comfortable in a C++ program.
The goals of sqlite3cc are:
- to be elegantly designed and written, following the principles of good C++
design and those laid out by boost <http://www.boost.org/>
- to be fast (add as small an execution overhead as possible)
- to keep the API as similar as possible to the sqlite3 library
More information about the sqlite3cc library can be found at
<http://www.waxworlds.org/edam/software/sqlite3cc>.
More information on sqlite3 can be found at <http://www.sqlite.org/>.
The sqlite3cc library was inspired by boost <http://www.boost.org/> and the
excellent sqlite3pp library by Wongoo Lee <http://code.google.com/p/sqlite3pp/>.
THE AUTHOR
==========
Please report bugs and direct suggestions and questions regarding this software
to Tim Marston <edam@waxworlds.org>.
|