SQLiteCpp/TODO.txt

37 lines
1.3 KiB
Plaintext

C++11 explicit support
Adding mpSQLite to the statement Shared Pointer
=> V0.5.0
Missing features in v0.4.0:
- Blob
- getColumnByName ? std::map getRow() ?
Missing documentation in v0.4.0:
- Help for the new helper functions
- This wrapper is not thread safe : compare to the thread safety of the SQLite3 library
Advanced missing features:
- :memory: : use the "zVfs" (last) parameter of sqlite3_open_v2() to give access to the ":memory:" VFS module
- backup support to/from :memory:
- 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
Add a full test suite
Add optional usage of experimental sqlite3_trace() function to enable statistics
Add a comparison of others C++ wrappers (code style, C++ design, in code documentation, tests, online documentation, examples, license, UTF-16)
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 (!?)