TODO.txt 1.2 KB

123456789101112131415161718192021222324252627282930
  1. Switch to C++11 for v2.0.0 with removal of include <sqlite.h> in headers
  2. Add a Tutorial for SQLite newbies
  3. Add a real example in the form of a small interactive console application
  4. Improve Github Wiki pages with the FAQ: Installation, Examples, Tutorial, How to contribute
  5. Publish the Doxygen Documentation in the Github Pages (gh-pages branch)
  6. Missing features in v2.0.0:
  7. - #24: executemany() like in Python https://docs.python.org/2/library/sqlite3.html#sqlite3.Connection.executemany
  8. - #34: Better type for getColumn
  9. Missing documentation in v2.0.0:
  10. - explain the noncopyable property for RAII design
  11. - comment on returning error code instead of exception that shall not be thrown when expected (!?)
  12. Missing unit tests in v2.0.0:
  13. - Load Extension (not practicable, and easy to verify by code review)
  14. Advanced missing features:
  15. - #39: SAVEPOINT https://www.sqlite.org/lang_savepoint.html
  16. - Add optional usage of experimental sqlite3_trace() function to enable statistics
  17. - Agregate ?
  18. - support for different transaction mode ? NO: too specific
  19. - operator<< binding ? NO: redundant with bind()
  20. - ATTACH Database ? NO: can already be done by "ATTACH" Statement
  21. Post an article to CodeProject: Is there a license issue ?