r9359: Fixes for PRINT-QUERY and sql concatenation operator (||).
[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 * universal-time 
13
14 COMMONSQL SPEC
15
16 * Incompatible 
17
18  >> The functional sql interface 
19   
20     SELECT 
21       o keyword arg :refresh should function as advertised 
22
23  >> Symbolic SQL syntax 
24
25       o Complete sql expressions (see operations.lisp)
26
27          nvl (Oracle specific) 
28          userenv (Oracle specific) 
29          minus (Oracle specific: does the same as EXCEPT) 
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 syntax:       doesn't support the sql concatenation operator (||). 
60
61 SQLITE 
62
63 create-view:  column-list parameter not supported 
64 syntax:       doesn't support the sql SUBSTRING operator.