X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2FTODO;h=8d976c8effe4dfbd6df648850be005fb5e9a761e;hb=b2ff4969e20cce173d403de7542d5bf0e46938d7;hp=c55c54bf59ee33ac822531068e515f19642c203c;hpb=2051cd1a64edc450319626f8ff1417c36e08a063;p=clsql.git diff --git a/doc/TODO b/doc/TODO index c55c54b..8d976c8 100644 --- a/doc/TODO +++ b/doc/TODO @@ -4,10 +4,12 @@ DOCUMENTATION TO DO LIST - Ideally, this will be extremely minimal + - The SQL syntax state functions are macros in CLSQL. + 2. Underdocumented CommonSQL features: - Retrieval immediate - - SQL operators: ||, SUBSTR, EXCEPT, INTERSECT, UNION ... + - SQL operators: ||, SUBSTR, MINUS, INTERSECT, UNION, NVL 2. CLSQL extensions to CommonSQL @@ -16,7 +18,8 @@ DOCUMENTATION TO DO LIST - New types such as wall-time, boolean, and bigint - SQL operators: group-by, limit, not-null, ==, is, having, the, uplike, - sql-view-class (just from a quick scan of operations.lisp) + sql-view-class, coalesce, except (just from a quick scan of + operations.lisp) - FDDL: list-views, view-exists-p, list-indexes, list-table-indexes, index-exists-p, create-sequence, drop-sequence, list-sequences, @@ -24,9 +27,44 @@ DOCUMENTATION TO DO LIST - OODML: *db-auto-sync* -4. Documenting lower level, non-CommonSQL functions like connection - pools and database-query-result-set. Some of this is already done. + - SELECT: additional keyword arguments accepted include :LIMIT, :OFFSET, + :INNER-JOIN and :ON. + + - SQL-RECORDING-P: also accepts :both and :either values for the TYPE + parameter. + + - DROP-TABLE/DROP-VIEW/DROP-INDEX: keyword arg :if-does-not-exist. + + - DROP-INDEX: keyword arg :on (for MySQL). + + - DEF-VIEW-CLASS: DB-CONSTRAINTS and DB-TYPE slot options. + + - CREATE-TABLE: keyword args :TRANSACTIONS (for MySQL) and :CONSTRAINTS + description arg accepts optional DB-TYPE string. + +4. Documenting lower level, non-CommonSQL functions (some of this is already + done). + + - connection pools + - database-query-result-set + + +5. Notes on any peculiarities of each of the backends (e.g., unsupported + features, notable extensions etc.). + + - MYSQL + + drop-index: requires a table to be specified with the :from parameter + views: mysql does not support views + queries: nested subqueries are not supported + syntax: doesn't support the sql concatenation operator (||). + doesn't support INTERSECT/EXCEPT set operations. + create-table: the transactions keyword arg controls whether the created + table is an InnoDB table (supporting transactions) or not. -5. Notes on any features unsupported by each of the backends. + - SQLITE + connection: specifying ":memory:" gives you an SQLite database in RAM. + create-view: column-list parameter not supported + syntax: doesn't support the sql SUBSTRING operator.