r9186: add attribute caching, improve inititialize-database-type
[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         (except for SQLite interface, this works when :result-types is :auto).
30         Perhaps that should be the default?
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