r9088: Automated commit for Debian build of clsql upstream-version-2.8.0
[clsql.git] / base / db-interface.lisp
index b2ba6e5533a1f20735a017757d517dd85553b7a7..7c75dd0fa95dd7305c64ef4daff373e4763dd73e 100644 (file)
@@ -113,14 +113,21 @@ returns nil when result-set is finished."))
    "Creates a database, returns T if successfull or signals an error."))
 
 (defgeneric database-probe (connection-spec type)
+  (:method (spec type)
+    (declare (ignore spec))
+    (warn "database-proe not support for database-type ~A." type))
   (:documentation
    "Probes for the existence of a database, returns T if database found or NIL 
 if not found. May signal an error if unable to communicate with database server."))
 
+(defgeneric database-list (connection-spec type)
+  (:method (spec type)
+    (declare (ignore spec))
+    (warn "database-list not support for database-type ~A." type))
+  (:documentation
+   "Lists all databases found for TYPE. May signal an error if unable to communicate with database server."))
+
 (defgeneric database-destroy (connection-spec database)
-  (:method (connection-spec (database t))
-          (declare (ignore connection-spec))
-          (signal-no-database-error database))
   (:documentation "Destroys (drops) a database."))
 
 (defgeneric database-truncate (database)