r9389: Additions to doc/TODO.
[clsql.git] / doc / TODO
1 DOCUMENTATION TO DO LIST
2
3 1. Variances from CommonSQL
4
5  - Ideally, this will be extremely minimal
6
7 2. Underdocumented CommonSQL features:
8
9  - Retrieval immediate
10  - SQL operators: ||, SUBSTR, MINUS, INTERSECT, UNION, NVL 
11
12 2. CLSQL extensions to CommonSQL
13
14  - RESULT-TYPES, FIELD-NAMES keywords for SELECT and QUERY
15
16  - New types such as wall-time, boolean, and bigint
17
18  - SQL operators: group-by, limit, not-null, ==, is, having, the, uplike,
19    sql-view-class, coalesce, except (just from a quick scan of 
20    operations.lisp)
21
22  - FDDL: list-views, view-exists-p, list-indexes, list-table-indexes,
23    index-exists-p, create-sequence, drop-sequence, list-sequences,
24    sequence-exists-p, sequence-next, sequence-last, set-sequence-position
25
26  - OODML: *db-auto-sync*
27
28  - SELECT: additional keyword arguments accepted include :LIMIT, :OFFSET, 
29    :INNER-JOIN and :ON. 
30
31 4. Documenting lower level, non-CommonSQL functions (some of this is already 
32    done). 
33
34  - connection pools
35  - database-query-result-set 
36
37 5. Notes on any peculiarities of each of the backends (e.g., unsupported 
38    features, notable extensions etc.). 
39
40  - MYSQL 
41
42    drop-index:   requires a table to be specified with the :from parameter
43    views:        mysql does not support views  
44    queries:      nested subqueries are not supported
45    syntax:       doesn't support the sql concatenation operator (||). 
46                  doesn't support INTERSECT/EXCEPT set operations. 
47
48  - SQLITE 
49
50    connection:   specifying ":memory:" gives you an SQLite database in RAM.
51    create-view:  column-list parameter not supported 
52    syntax:       doesn't support the sql SUBSTRING operator. 
53