SQLiteCpp/TODO.txt
2012-04-09 22:22:50 +02:00

28 lines
984 B
Plaintext

Add a comparison of others C++ wrappers (code style, C++ design, in code documentation, tests, online documentation, examples, license, UTF-16)
Missing features :
- Bind(Name)
- getColumnByName ? std::map getRow() ?
- operator<< binding ?
- execScalar() easy wrapper like CppSqlite
- TableExists
- batch mode managing multiple queries semicolon separated
- support for different transaction mode
- Function ?
- Agregate ?
- ATTACH Database ? can already be done by "ATTACH" Statement
- :memory: ? can already be done by Database constructor with ":memory:" filename
Add a full test suite
Add optionnal usage of experimental sqlite3_trace() function to enable statistics
Post an article to CodeProject : Is there a license issue ?
Mirror the repository to GoogleCode : with a versionned downloadable ZIP file
Documentation:
- explain the noncopyable property for RAII design
- comment on returning error code instead of exception that shall not be thrown when exepected (!?)