mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
Minor additions
This commit is contained in:
parent
74ffd41dec
commit
9b641a5f59
19
README.md
19
README.md
@ -1,24 +1,29 @@
|
|||||||
SQLiteC++
|
SQLiteC++
|
||||||
---------
|
---------
|
||||||
|
|
||||||
Copyright (c) 2012 Sebastien Rombauts (sebastien dot rombauts at gmail dot com)
|
SQLiteC++ is a smart and easy to use C++ SQLite3 wrapper.
|
||||||
|
|
||||||
|
See SQLiteC++ website http://srombauts.github.com/SQLiteCpp on GitHub.
|
||||||
|
|
||||||
|
|
||||||
|
Copyright (c) 2012 Sébastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
|
|
||||||
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
or copy at http://opensource.org/licenses/MIT)
|
or copy at http://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
|
|
||||||
SQLiteC++ is a smart and easy to use C++ SQLite3 wrapper.
|
|
||||||
|
|
||||||
The goals of SQLiteC++ are:
|
The goals of SQLiteC++ are:
|
||||||
|
|
||||||
- to offer the best of actual existing simple wrappers
|
- to offer the best of existing simple wrappers
|
||||||
- to use a permissible license like MIT or BSD
|
- to use a permissive license like MIT or BSD
|
||||||
- to be elegantly written with good C++ design, STL, exceptions and RAII idiom
|
- to be elegantly written with good C++ design, STL, exceptions and RAII idiom
|
||||||
- to keep dependencies to a minimum (STL and SQLite3)
|
- to keep dependencies to a minimum (STL and SQLite3)
|
||||||
- to be well documented, in code with Doxygen, and online with some good examples
|
- to be well documented, in code with Doxygen, and online with some good examples
|
||||||
- to be portable
|
- to be portable
|
||||||
- to be light and fast
|
- to be light and fast
|
||||||
|
- to be monothreaded
|
||||||
- to use API names sticking with those of the SQLite library
|
- to use API names sticking with those of the SQLite library
|
||||||
|
- to be well maintained
|
||||||
|
|
||||||
It is designed with the Resource Acquisition Is Initialization (RAII) idom
|
It is designed with the Resource Acquisition Is Initialization (RAII) idom
|
||||||
(see http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization),
|
(see http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization),
|
||||||
@ -82,5 +87,5 @@ For other simple C++ SQLite wrappers look also at:
|
|||||||
- **sqdbcpp**: RAII design, no depandencies, UTF-8/UTF-16, new BSD license (http://code.google.com/p/sqdbcpp/)
|
- **sqdbcpp**: RAII design, no depandencies, UTF-8/UTF-16, new BSD license (http://code.google.com/p/sqdbcpp/)
|
||||||
- **sqlite3pp**: uses boost, MIT License (http://code.google.com/p/sqlite3pp/)
|
- **sqlite3pp**: uses boost, MIT License (http://code.google.com/p/sqlite3pp/)
|
||||||
- **SQLite++**: uses boost build system, Boost License 1.0 (http://sqlitepp.berlios.de/)
|
- **SQLite++**: uses boost build system, Boost License 1.0 (http://sqlitepp.berlios.de/)
|
||||||
- **sqlite3cc**: uses boost, LPGPL (https://launchpad.net/sqlite3cc)
|
- **sqlite3cc**: uses boost, LPGPL (http://ed.am/dev/sqlite3cc and https://launchpad.net/sqlite3cc)
|
||||||
- **CppSQLite**: famous Code Project but old design, BSD License (http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite/)
|
- **CppSQLite**: famous Code Project but old design, BSD License (http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite/)
|
||||||
|
5
TODO.txt
5
TODO.txt
@ -1,10 +1,11 @@
|
|||||||
Add a table comparison of others C++ wrappers (code style, C++ design, in code documentation, tests, online documentation, examples, license, UTF-16)
|
Add a comparison of others C++ wrappers (code style, C++ design, in code documentation, tests, online documentation, examples, license, UTF-16)
|
||||||
|
|
||||||
Missing features :
|
Missing features :
|
||||||
- BindNULL
|
- BindNULL
|
||||||
- LastInsertId
|
- LastInsertId
|
||||||
- TableExists
|
- TableExists
|
||||||
- SetBusyTimout
|
- SetBusyTimout
|
||||||
|
- getColumnByName ? std::map getRow() ?
|
||||||
- operator<< binding ?
|
- operator<< binding ?
|
||||||
- execScalar() easy wrapper like CppSqlite
|
- execScalar() easy wrapper like CppSqlite
|
||||||
- batch mode managing multiple queries semicolon separated
|
- batch mode managing multiple queries semicolon separated
|
||||||
@ -13,5 +14,5 @@ Add a full test suite
|
|||||||
|
|
||||||
Add optionnal usage of experimental sqlite3_trace() function to enable statistics
|
Add optionnal usage of experimental sqlite3_trace() function to enable statistics
|
||||||
|
|
||||||
Post an article to CodeProject : with a versionned downloadable ZIP file
|
Post an article to CodeProject : Is there a license issue ?
|
||||||
Mirror the repository to GoogleCode : with a versionned downloadable ZIP file
|
Mirror the repository to GoogleCode : with a versionned downloadable ZIP file
|
||||||
|
Loading…
x
Reference in New Issue
Block a user