r9433:
[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 * Test bigint type
7 * :db-constraint tests
8 * test *db-auto-sync* 
9 * for-each-row macro
10 * universal-time 
11 * owner phrases for postgresql and oracle backends
12 * test of large table with large numbers of rows, greater than 2x the number of
13   rows (200) returned by the oracle backend at a time
14 * test mixed case table identifiers and column identifiers
15
16 COMMONSQL INCOMPATIBILITY
17
18    o doesn't support CHAR and NUMBER types as shown on CREATE-TABLE reference page
19    o (string n) => VARCHAR(n) rather than CHAR(n)
20    o userenv (Oracle specific but deprecated in Oracle 9) 
21  
22 VARIANCES FROM COMMONSQL
23
24 COMMIT,ROLLBACK,START-TRANSACTION: 
25  When COMMIT or ROLLBACK are called outside of WITH-TRANSACTION, an sql 
26  transaction must be explicitly started first with START-TRANSACTION. 
27
28 OPTIMIZATIONS
29  
30 * Revisit result-type list creation, perhaps caching
31
32 POSSIBLE EXTENSIONS
33
34 * extend large object support to databases beyond postgresql, improve large object api
35 * add support for prepared statements
36 * port Oracle backend to UFFI
37