forked from SRombauts/SQLiteCpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO.txt
36 lines (27 loc) · 1.38 KB
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
C++11 explicit support
=> V0.5.0
Missing features in v0.4.0:
- **Blob** => make an example/test with image stored in a row
- getColumnByName ? std::map getRow() ?
- getColumnType + isText + isInt + isDouble...
Missing documentation in v0.4.0:
- parameters of functions in Column and Statement
- Help for the 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 (!?)