r9228: add tests for result-types for map-query and do-query, ignore incorrect select...
[clsql.git] / TODO
1 GENERAL 
2
3 * port Oracle backend to UFFI.
4 * consider adding large object support to mysql and odbc
5 * add support for prepared statements. 
6
7 TESTS TO ADD
8
9 * CACHE-TABLE-QUERIES
10 * Test that ":db-kind :key" adds an index for that key. This is complicated by different
11   backends showing autogenerated primary key in different ways.
12 * Large object testing
13 * Test bigint type
14 * :db-constraint tests
15
16 COMMONSQL SPEC
17
18 * Missing: 
19
20   UPDATE-OBJECT-JOINS 
21
22 * Incompatible 
23
24  >> The functional sql interface 
25   
26     SELECT 
27       o keyword arg :refresh should function as advertised 
28       o should accept type-modified database identifiers (e.g., 
29         [foo :string] which means that the values in column foo are returned 
30         as Lisp strings) 
31
32  >> The object-oriented sql interface
33
34     DEF-VIEW-CLASS
35       o get :target-slot working 
36       o implement :retrieval :immediate 
37
38     LOOP
39       o should work with object queries as well as functional ones 
40
41  >> Symbolic SQL syntax 
42
43       o Complete sql expressions (see operations.lisp)
44
45          substr
46          some 
47          order-by 
48          times 
49          nvl
50          null 
51          distinct
52          except 
53          intersect 
54          between
55          userenv
56
57       o variables (e.g., table identifiers) should be instantiated at runtime 
58
59
60
61 NOTES ABOUT THE BACKENDS
62
63 MYSQL 
64
65 drop-index:   requires a table to be specified with the :from keyword parameter
66 views:        mysql does not support views  
67 queries:      nested subqueries are not supported
68
69 SQLITE 
70
71 create-view: column-list parameter not supported