r9336: 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
[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 * test *db-auto-sync* 
10 * test SELECT caching
11 * for-each-row macro
12
13 COMMONSQL SPEC
14
15 * Missing: 
16
17   UPDATE-OBJECT-JOINS 
18
19 * Incompatible 
20
21  >> The functional sql interface 
22   
23     SELECT 
24       o keyword arg :refresh should function as advertised 
25
26  >> Symbolic SQL syntax 
27
28       o Complete sql expressions (see operations.lisp)
29
30          nvl (Oracle specific) 
31          userenv (Oracle specific) 
32          minus (Oracle specific: does the same as EXCEPT) 
33          || 
34
35       o variables (e.g., table identifiers) should be instantiated at runtime 
36
37 OPTIMIZATIONS
38
39 * Revisit result-type list creation,perhaps caching
40
41 POSSIBLE EXTENSIONS
42
43 * port Oracle backend to UFFI
44 * large object support 
45 * add support for prepared statements
46
47
48 NOTES ABOUT THE BACKENDS
49
50 MYSQL 
51
52 drop-index:   requires a table to be specified with the :from keyword parameter
53 views:        mysql does not support views  
54 queries:      nested subqueries are not supported
55
56 SQLITE 
57
58 create-view: column-list parameter not supported