summaryrefslogtreecommitdiff
path: root/TODOS
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-02-13 09:56:58 +0100
committerAndreas Baumann <abaumann@yahoo.com>2010-02-13 09:56:58 +0100
commit68354c7d41085d1f976a5b1d7ee542479a85f621 (patch)
treeaec761c793093e4a2e4ce18d78b3b531bcb12a42 /TODOS
downloadsqlitexx-68354c7d41085d1f976a5b1d7ee542479a85f621.tar.gz
sqlitexx-68354c7d41085d1f976a5b1d7ee542479a85f621.tar.bz2
imported trunk from sourceforge SVN
Diffstat (limited to 'TODOS')
-rw-r--r--TODOS12
1 files changed, 12 insertions, 0 deletions
diff --git a/TODOS b/TODOS
new file mode 100644
index 0000000..a4fbd24
--- /dev/null
+++ b/TODOS
@@ -0,0 +1,12 @@
+- recycle internal prepared statements, the question is when?
+ best if the result reaches a final state and instead of resetting
+ the statement we unprepare it
+- sqlite_changes gives back the number of rows affected of the last
+ command (non-query), queries must result 0
+- check types in param defition with bind parameters on invocation
+- sort out interface regarding character set encoding
+- find out whether we have bind parameters or not during execution
+ of a statement and dynamically prepare the statement. but not for
+ things like 'BEGIN' where the result is nodata always.
+- why are strings always bound to the first passed parameter?
+- why is the type always SQLITE_NULL?