r9188: make result-types :auto the default
[clsql.git] / TODO
1 GENERAL 
2
3 * port Oracle backend to UFFI.
4
5 COMMONSQL SPEC
6
7 * Missing: 
8
9   UPDATE-OBJECT-JOINS 
10
11 * Incompatible 
12
13
14  >> Initialisation and connection 
15
16     STATUS 
17      o what is the behaviour in CommonSQL (esp :full parameter)? 
18
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