r9244: Automated commit for Debian build of clsql upstream-version-2.10.11
[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 * *update-records-on-make-instance*
10
11 COMMONSQL SPEC
12
13 * Missing: 
14
15   UPDATE-OBJECT-JOINS 
16
17 * Incompatible 
18
19  >> The functional sql interface 
20   
21     SELECT 
22       o keyword arg :refresh should function as advertised 
23  
24  >> The object-oriented sql interface
25
26     DEF-VIEW-CLASS
27       o implement :retrieval :immediate 
28
29  >> Symbolic SQL syntax 
30
31       o Complete sql expressions (see operations.lisp)
32
33          substr
34          some 
35          order-by 
36          times 
37          nvl
38          null 
39          distinct
40          except 
41          intersect 
42          between
43          userenv
44
45       o variables (e.g., table identifiers) should be instantiated at runtime 
46
47
48 POSSIBLE EXTENSIONS
49
50 * port Oracle backend to UFFI
51 * large object support 
52 * add support for prepared statements
53
54
55 NOTES ABOUT THE BACKENDS
56
57 MYSQL 
58
59 drop-index:   requires a table to be specified with the :from keyword parameter
60 views:        mysql does not support views  
61 queries:      nested subqueries are not supported
62
63 SQLITE 
64
65 create-view: column-list parameter not supported