X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Fdb-interface.lisp;h=d6b1abe9c61c50a26e274485d3a59e7cebffefb1;hp=698b235333848e0dc6d3813fdbc4d7bd8310c808;hb=fdd069770e32d0cfa4b66d6e5cfd4540197660ba;hpb=bf2c17ae4cb07adab3bbff036228572287936d75;ds=sidebyside diff --git a/sql/db-interface.lisp b/sql/db-interface.lisp index 698b235..d6b1abe 100644 --- a/sql/db-interface.lisp +++ b/sql/db-interface.lisp @@ -128,12 +128,6 @@ if not found. May signal an error if unable to communicate with database server. (signal-no-database-error database)) (:documentation "Remove all data from database.")) -(defgeneric database-describe-table (database table) - (:method ((database t) table) - (declare (ignore table)) - (signal-no-database-error database)) - (:documentation "Return a list of name/type for columns in table")) - (defgeneric database-destory (connection-spec type) (:documentation "Destroys a database, returns T if successfull or signals an error @@ -405,6 +399,4 @@ of TYPE_NAME (keyword) PRECISION SCALE NULLABLE.") (unless (is-database-open database) (signal-closed-database-error database))) -(defgeneric describe-table (table &key database) - (:documentation "Describes a table, returns a list of name/type for columns in table"))