/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to README

  • Committer: edam
  • Date: 2010-01-28 12:21:03 UTC
  • Revision ID: edam@waxworlds.org-20100128122103-v3gs6hro5h7ffnhb
- further initial development
- basic support for: queries, rows (query results)
- filename, comment header and project name consistency

Show diffs side-by-side

added added

removed removed

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