59547b110cb9537b94f5e78e3688a8824159d543
[clsql.git] / doc / TODO
1 DOCUMENTATION TO DO LIST
2
3 1. Variances from CommonSQL (Ideally, this will be extremely minimal) 
4
5  - The SQL syntax state functions are macros in CLSQL. 
6
7  - CLSQL starts with in transaction AUTOCOMMIT mode. To begin a transaction,
8    START-TRANSACTION has to be called.
9
10
11 2. Underdocumented CommonSQL features:
12
13  - Retrieval immediate
14  - SQL operators: ||, SUBSTR, MINUS, INTERSECT, UNION, NVL 
15
16
17 3. CLSQL extensions to CommonSQL
18
19  - New types such as wall-time, boolean, and bigint
20
21  - SQL operators: group-by, limit, not-null, ==, is, having, the, uplike,
22    sql-view-class, coalesce, except (just from a quick scan of 
23    operations.lisp)
24
25  - FDML: FOR-EACH-ROW, prepared statements and large object support. 
26
27  - OODML: *db-auto-sync*
28
29  - SELECT: additional keyword arguments accepted include :LIMIT, :OFFSET, 
30    :INNER-JOIN and :ON. 
31
32  - DEF-VIEW-CLASS: DB-CONSTRAINTS, DB-TYPE and VOID-VALUE slot options. 
33
34
35 4. Documenting lower level, non-CommonSQL functions (some of this is already 
36    done). 
37
38  - connection pools
39  - database-query-result-set 
40  
41
42 5. Notes on any peculiarities of each of the backends (e.g., unsupported 
43    features, notable extensions etc.). 
44
45  - MYSQL 
46
47    drop-index:   requires a table to be specified with the :on parameter
48    views:        mysql does not support views  
49    queries:      nested subqueries are not supported
50    syntax:       doesn't support the sql concatenation operator (||). 
51                  doesn't support INTERSECT/EXCEPT set operations. 
52    create-table: the transactions keyword arg controls whether the created 
53                  table is an InnoDB table (supporting transactions) or not. 
54    FDDL:         list-*/*-exists-p: :OWNER keyword argument ignored. 
55
56  - SQLITE 
57
58    connection:   specifying ":memory:" gives you an SQLite database in RAM.
59    create-view:  column-list parameter not supported 
60    syntax:       doesn't support the sql SUBSTRING operator. 
61    FDDL:         list-*/*-exists-p: :OWNER keyword argument ignored. 
62
63  - ODBC 
64
65    FDDL:         list-*/*-exists-p: :OWNER keyword argument ignored.