r9196: remove bogus subtest
[clsql.git] / TODO
1 GENERAL 
2
3 * port Oracle backend to UFFI.
4
5 TESTS TO ADD
6
7 * CACHE-TABLE-QUERIES
8 * :VOID-VALUE
9 * :db-kind :key adds an index for that key, complicated by different
10   backends show autogenerated primary key in different ways.
11  
12 COMMONSQL SPEC
13
14 * Missing: 
15
16   UPDATE-OBJECT-JOINS 
17
18 * Incompatible 
19
20  >> The functional sql interface 
21   
22     SELECT 
23       o keyword arg :refresh should function as advertised 
24       o should return (values result-list field-names)
25       o should coerce values returned as strings to appropriate lisp type
26
27     QUERY 
28       o should coerce values returned as strings to appropriate lisp type
29         for SQLite backend
30
31  >> The object-oriented sql interface
32
33     DEF-VIEW-CLASS
34       o get :target-slot working 
35       o implement :retrieval :immediate 
36
37     DO-QUERY,MAP-QUERY,LOOP
38       o should work with object queries as well as functional ones 
39
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