r9359: Fixes for PRINT-QUERY and sql concatenation operator (||).
[clsql.git] / TODO
diff --git a/TODO b/TODO
index bc42595d3e32acafc00daf262139951bd9fe8fe0..29e242cc601ae4802ed239c75656bfdf946c75d4 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,72 +1,52 @@
-GENERAL 
-
-* implement remaining functions for CLSQL AODBC backend;
-* port Oracle backend to UFFI.
+TESTS TO ADD
+
+* CACHE-TABLE-QUERIES
+* Test that ":db-kind :key" adds an index for that key. This is complicated by different
+  backends showing autogenerated primary key in different ways.
+* Large object testing
+* Test bigint type
+* :db-constraint tests
+* test *db-auto-sync* 
+* test SELECT caching
+* for-each-row macro
+* universal-time 
 
 COMMONSQL SPEC
 
-* Missing: 
-
-  CACHE-TABLE-QUERIES 
-  *CACHE-TABLE-QUERIES-DEFAULT*
-  *DEFAULT-UPDATE-OBJECTS-MAX-LEN* 
-  UPDATE-OBJECT-JOINS 
-
-
 * Incompatible 
 
-
- >> Initialisation and connection 
-
-    INITIALIZE-DATABASE-TYPE
-     o should initialise appropriate backend 
-
-    STATUS 
-     o what is the behaviour in CommonSQL (esp :full parameter)? 
-
-
  >> The functional sql interface 
   
     SELECT 
       o keyword arg :refresh should function as advertised 
-      o should return (values result-list field-names)
-      o should coerce values returned as strings to appropriate lisp type
-
-    QUERY 
-      o should coerce values returned as strings to appropriate lisp type
-
-    LIST-ATTRIBUTE-TYPES
-      o should return list of (attribute datatype precision scale nullable)    
 
+ >> Symbolic SQL syntax 
 
- >> The object-oriented sql interface
+      o Complete sql expressions (see operations.lisp)
 
-    DEF-VIEW-CLASS
-      o get :target-slot working 
-      o implement :retrieval :immediate 
+         nvl (Oracle specific) 
+         userenv (Oracle specific) 
+        minus (Oracle specific: does the same as EXCEPT) 
 
-    DO-QUERY,MAP-QUERY,LOOP
-      o should work with object queries as well as functional ones 
+      o variables (e.g., table identifiers) should be instantiated at runtime 
 
 
- >> Symbolic SQL syntax 
+VARIANCES FROM COMMONSQL
 
-      o Complete sql expressions (see operations.lisp)
+UPDATE-OBJECT-JOINS:
+ Rather than simply reading the values for each
+ object, to meet CommonSQL spec need to generate a single
+ query to read values for all objects, up to max-len count.
 
-         substr
-         some 
-         order-by 
-         times 
-         nvl
-         null 
-         distinct
-         except 
-         intersect 
-         between
-         userenv
+OPTIMIZATIONS
+* Revisit result-type list creation,perhaps caching
 
-      o variables (e.g., table identifiers) should be instantiated at runtime 
+POSSIBLE EXTENSIONS
 
+* port Oracle backend to UFFI
+* large object support 
+* add support for prepared statements
 
 
 NOTES ABOUT THE BACKENDS
@@ -76,7 +56,9 @@ MYSQL
 drop-index:   requires a table to be specified with the :from keyword parameter
 views:        mysql does not support views  
 queries:      nested subqueries are not supported
+syntax:       doesn't support the sql concatenation operator (||). 
 
 SQLITE 
 
-create-view: column-list parameter not supported 
+create-view:  column-list parameter not supported 
+syntax:       doesn't support the sql SUBSTRING operator.