r9241: add type-modified database identifier support to SELECT
[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
10 POSSIBLE EXTENSIONS
11
12 * port Oracle backend to UFFI
13 * large object support 
14 * add support for prepared statements
15
16 COMMONSQL SPEC
17
18 * Missing: 
19
20   UPDATE-OBJECT-JOINS 
21
22 * Incompatible 
23
24  >> The functional sql interface 
25   
26     SELECT 
27       o keyword arg :refresh should function as advertised 
28  
29  >> The object-oriented sql interface
30
31     DEF-VIEW-CLASS
32       o get :target-slot working 
33       o implement :retrieval :immediate 
34
35  >> Symbolic SQL syntax 
36
37       o Complete sql expressions (see operations.lisp)
38
39          substr
40          some 
41          order-by 
42          times 
43          nvl
44          null 
45          distinct
46          except 
47          intersect 
48          between
49          userenv
50
51       o variables (e.g., table identifiers) should be instantiated at runtime 
52
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