compatibility: Fix ECL loading issues
[clsql.git] / TODO
1 TESTS TO ADD
2
3 * Test that ":db-kind :key" adds an index for that key. This is complicated by 
4   different backends showing autogenerated primary key in different ways.
5 * :db-constraint tests
6 * Number and Char field types
7 * symbol slot
8 * generalized-boolean slot
9 * tests for db-reader and db-writer
10
11 OPTIMIZATIONS
12  
13 * Revisit result-type list creation, perhaps caching
14 * Rework LIST-ATTRIBUTE-TYPES and LIST-INDEXES such that they exhibit their 
15   current behaviours using single database queries.  
16 * Possible use of cached attribute type information for operations which 
17   insert/update records as mentioned in the CommonSQL user guide. 
18 * Extend caching of generated SQL strings to more complex expressions which 
19   are likely to be repeatedly executed many times. 
20
21 POSSIBLE EXTENSIONS
22
23 * improve large object api and extend to databases beyond postgresql 
24 * add support for prepared statements
25
26 RACE CONDITIONS
27 * sql/databases.lisp: *connected-databases* is shared globally but not modified in a threadsafe manner.