X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2FTODO;h=59547b110cb9537b94f5e78e3688a8824159d543;hb=ca1fbde617aefd39a81c3eaae9ba25c3fd949f59;hp=3220070454f4de65fb5a4157c4c84eaf54fdd321;hpb=4c89485f5cdb21a334de9c35adfded30db0c75e7;p=clsql.git diff --git a/doc/TODO b/doc/TODO index 3220070..59547b1 100644 --- a/doc/TODO +++ b/doc/TODO @@ -1,20 +1,20 @@ DOCUMENTATION TO DO LIST -1. Variances from CommonSQL - - - Ideally, this will be extremely minimal +1. Variances from CommonSQL (Ideally, this will be extremely minimal) - The SQL syntax state functions are macros in CLSQL. + - CLSQL starts with in transaction AUTOCOMMIT mode. To begin a transaction, + START-TRANSACTION has to be called. + + 2. Underdocumented CommonSQL features: - Retrieval immediate - SQL operators: ||, SUBSTR, MINUS, INTERSECT, UNION, NVL -2. CLSQL extensions to CommonSQL - - RESULT-TYPES, FIELD-NAMES keywords for SELECT, QUERY, DO-QUERY and - MAP-QUERY. +3. CLSQL extensions to CommonSQL - New types such as wall-time, boolean, and bigint @@ -22,35 +22,14 @@ DOCUMENTATION TO DO LIST 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, - sequence-exists-p, sequence-next, sequence-last, set-sequence-position - - - FDML: TRUNCATE-DATABASE, DESCRIBE-TABLE, FOR-EACH-ROW and large object - support. + - FDML: FOR-EACH-ROW, prepared statements and large object support. - OODML: *db-auto-sync* - 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. - - - transactions: START-TRANSACTION and IN-TRANSACTION-P. - - - FIND-DATABASE: :db-type keyword arg. - - - CONNECT: :make-default and :pool keyword args. + - DEF-VIEW-CLASS: DB-CONSTRAINTS, DB-TYPE and VOID-VALUE slot options. 4. Documenting lower level, non-CommonSQL functions (some of this is already @@ -58,8 +37,6 @@ DOCUMENTATION TO DO LIST - connection pools - database-query-result-set - - with-default-database, with-database, create-database, probe-database, - destroy-database, list-databases. 5. Notes on any peculiarities of each of the backends (e.g., unsupported @@ -67,17 +44,22 @@ DOCUMENTATION TO DO LIST - MYSQL - drop-index: requires a table to be specified with the :from parameter + drop-index: requires a table to be specified with the :on 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. + FDDL: list-*/*-exists-p: :OWNER keyword argument ignored. - 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. + FDDL: list-*/*-exists-p: :OWNER keyword argument ignored. + + - ODBC + FDDL: list-*/*-exists-p: :OWNER keyword argument ignored.