r9357: initial update-object-joins
[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 * Incompatible 
16
17  >> The functional sql interface 
18   
19     SELECT 
20       o keyword arg :refresh should function as advertised 
21
22  >> Symbolic SQL syntax 
23
24       o Complete sql expressions (see operations.lisp)
25
26          nvl (Oracle specific) 
27          userenv (Oracle specific) 
28          minus (Oracle specific: does the same as EXCEPT) 
29          || 
30
31       o variables (e.g., table identifiers) should be instantiated at runtime 
32
33
34 VARIANCES FROM COMMONSQL
35
36 UPDATE-OBJECT-JOINS:
37  Rather than simply reading the values for each
38  object, to meet CommonSQL spec need to generate a single
39  query to read values for all objects, up to max-len count.
40
41 OPTIMIZATIONS
42  
43 * Revisit result-type list creation,perhaps caching
44
45 POSSIBLE EXTENSIONS
46
47 * port Oracle backend to UFFI
48 * large object support 
49 * add support for prepared statements
50
51
52 NOTES ABOUT THE BACKENDS
53
54 MYSQL 
55
56 drop-index:   requires a table to be specified with the :from keyword parameter
57 views:        mysql does not support views  
58 queries:      nested subqueries are not supported
59
60 SQLITE 
61
62 create-view: column-list parameter not supported