summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--feature/query/list23
1 files changed, 17 insertions, 6 deletions
diff --git a/feature/query/list b/feature/query/list
index ec791d3..bcd9ffd 100644
--- a/feature/query/list
+++ b/feature/query/list
@@ -1,7 +1,11 @@
-? Support for sub-queries in the query() call.
+- Support for out parameters in SQL Server stored procedures [mssql]
- Will probably also need the generalized data members (for SELECT-
- list).
+ Seems like re-using the by-ref machinery is the most sensible way.
+ See also paper notes.
+
+- Support for Table-Valued Parameters in SQL Server [mssql]
+
+ See paper notes.
- Implement and document how to call stored procedures in each DB
@@ -12,6 +16,13 @@
Add test for MySQL and all the other databases (have some code
saved).
- Might make sense to add the call() function in addition to query()
- with variadic number of arguments so one doesn't have to keep adding
- ",".
+
+- Add the call() function to call stored procedures [c++11]
+
+ Will have a variadic number of arguments so one doesn't have to
+ keep adding ",".
+
+? Support for sub-queries in the query() call.
+
+ Will probably also need the generalized data members (for SELECT-
+ list).