r9199: fold clsql-base and clsql-base-sys into clsql-base
[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 * New universal and bigint types, add tests for other types
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       o should return (values result-list field-names)
26       o should coerce values returned as strings to appropriate lisp type
27
28     QUERY 
29       o should coerce values returned as strings to appropriate lisp type
30         for SQLite backend
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     DO-QUERY,MAP-QUERY,LOOP
39       o should work with object queries as well as functional ones 
40
41
42  >> Symbolic SQL syntax 
43
44       o Complete sql expressions (see operations.lisp)
45
46          substr
47          some 
48          order-by 
49          times 
50          nvl
51          null 
52          distinct
53          except 
54          intersect 
55          between
56          userenv
57
58       o variables (e.g., table identifiers) should be instantiated at runtime 
59
60
61
62 NOTES ABOUT THE BACKENDS
63
64 MYSQL 
65
66 drop-index:   requires a table to be specified with the :from keyword parameter
67 views:        mysql does not support views  
68 queries:      nested subqueries are not supported
69
70 SQLITE 
71
72 create-view: column-list parameter not supported