diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-01-26 12:07:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-01-26 12:07:50 +0200 |
commit | 3670362f88c442a866379f4ff93e5fc1b9df081d (patch) | |
tree | b606289b2f6ed971799f4f66fbf8b5165850d435 | |
parent | 4eba3904a150a9ba6d718e3b81c3b0e582166031 (diff) |
Copy few features from paper notes
-rw-r--r-- | feature/query/list | 23 |
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). |