summaryrefslogtreecommitdiff
path: root/feature/query/list
blob: 5d4b2d760eadb781e87d02611024c70434eb2219 (plain)
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
- Support for comparing composite value members in queries

- Support for out parameters in SQL Server stored procedures [mssql]

  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

  Also some DBs distinguish between procedures and functions. Need
  to figure out and show that as well. And test. See MySQL as an
  example.

  Add test for MySQL and all the other databases (have some code
  saved).

- 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 ",".

  Also the ability to provide a stored procedure name first.

? Support for sub-queries in the query() call.

  Will probably also need the generalized data members (for SELECT-
  list).