SQLiteCpp/TODO.txt
Sébastien Rombauts 37a760945c Added a Database::tableExists() easy to use function, useful for unit testing.
- Adding a Doxyfile to generate documentation of the wrapper
2012-04-23 10:42:36 +02:00

31 lines
1.1 KiB
Plaintext

Add a comparison of others C++ wrappers (code style, C++ design, in code documentation, tests, online documentation, examples, license, UTF-16)
Missing features in v0.4.0:
- Blob
- getColumnByName ? std::map getRow() ?
Missing documentation in v0.4.0:
- Help for the new helper functions
Advanced missing features:
- batch mode managing multiple queries semicolon separated ?
- Function ?
- Agregate ?
- support for different transaction mode ? NO: too specific
- operator<< binding ? NO: redundant with bind()
- ATTACH Database ? NO: can already be done by "ATTACH" Statement
- :memory: ? NO: can already be done by Database constructor with ":memory:" filename
Add a full test suite
Add optional 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 (!?)