1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
THE SQLITEPP LIBRARY
====================
The sqlitepp 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 sqlitepp are:
- to be elegantly designed and written
- to be fast and simple
- to be a minimal wrapper
More information on sqlite3 can be found at <http://www.sqlite.org/>.
The sqlitepp 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>.
|