mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-09-07 19:36:26 -04:00
18 lines
881 B
Plaintext
18 lines
881 B
Plaintext
SQLiteC++ is a smart and simple C++ SQLite3 wrapper, easy to use and efficient.
|
|
|
|
It is designed with the Resource Acquisition Is Initialization (RAII) idom
|
|
(see http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization).
|
|
Thus Each SQLiteC++ object must be constructed with a valid SQLite database connexion.
|
|
|
|
For other simple C++ SQLite wrappers look also at:
|
|
- sqdbcpp also using RAII (http://code.google.com/p/sqdbcpp/)
|
|
- CppSQLite (http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite
|
|
or fork at https://github.com/NeoSmart/CppSQLite)
|
|
- sqlite3pp (http://code.google.com/p/sqlite3pp/)
|
|
- SQLite++ (http://sqlitepp.berlios.de/)
|
|
|
|
Copyright (c) 2012 Sebastien Rombauts (sebastien dot rombauts at gmail dot com)
|
|
|
|
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
|
or copy at http://opensource.org/licenses/MIT)
|