r9233: fix loop
[clsql.git] / TODO
1 TESTS TO ADD
2
3 * CACHE-TABLE-QUERIES
4 * Test that ":db-kind :key" adds an index for that key. This is complicated by different
5   backends showing autogenerated primary key in different ways.
6 * Large object testing
7 * Test bigint type
8 * :db-constraint tests
9
10 POSSIBLE EXTENSIONS
11
12 * port Oracle backend to UFFI
13 * large object support 
14 * add support for prepared statements
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  >> Symbolic SQL syntax 
39
40       o Complete sql expressions (see operations.lisp)
41
42          substr
43          some 
44          order-by 
45          times 
46          nvl
47          null 
48          distinct
49          except 
50          intersect 
51          between
52          userenv
53
54       o variables (e.g., table identifiers) should be instantiated at runtime 
55
56
57
58 NOTES ABOUT THE BACKENDS
59
60 MYSQL 
61
62 drop-index:   requires a table to be specified with the :from keyword parameter
63 views:        mysql does not support views  
64 queries:      nested subqueries are not supported
65
66 SQLITE 
67
68 create-view: column-list parameter not supported