X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Ffdml.lisp;h=ee9a37db3ea0a343eb0b1ba33e8fbe49b8a4a955;hp=79fa18ef342bff10d97815b90920b303e5cac1e7;hb=cb683851a0af33e88b7c4995435dc0cf226f6cba;hpb=fdd069770e32d0cfa4b66d6e5cfd4540197660ba diff --git a/sql/fdml.lisp b/sql/fdml.lisp index 79fa18e..ee9a37d 100644 --- a/sql/fdml.lisp +++ b/sql/fdml.lisp @@ -62,24 +62,6 @@ (list :flatp t)) (list :database database)))) -(defun truncate-database (&key (database *default-database*)) - (unless (typep database 'database) - (signal-no-database-error database)) - (unless (is-database-open database) - (database-reconnect database)) - (when (eq :oracle (database-type database)) - (ignore-errors (execute-command "PURGE RECYCLEBIN" :database database))) - (when (db-type-has-views? (database-underlying-type database)) - (dolist (view (list-views :database database)) - (drop-view view :database database))) - (dolist (table (list-tables :database database)) - (drop-table table :database database)) - (dolist (index (list-indexes :database database)) - (drop-index index :database database)) - (dolist (seq (list-sequences :database database)) - (drop-sequence seq :database database)) - (when (eq :oracle (database-type database)) - (ignore-errors (execute-command "PURGE RECYCLEBIN" :database database)))) (defun print-query (query-exp &key titles (formats t) (sizes t) (stream t) (database *default-database*)) @@ -195,12 +177,11 @@ the SQL expression WHERE in the table specified by TABLE in DATABASE which defaults to *DEFAULT-DATABASE*. There are three ways of specifying the values to update for each row. In the first, VALUES contains a list of values to use in the update and -ATTRIBUTES, AV-PAIRS and QUERY are nil. This can be used when -values are supplied for all attributes in TABLE. In the second, -ATTRIBUTES is a list of column names, VALUES is a corresponding -list of values and AV-PAIRS and QUERY are nil. In the third, -ATTRIBUTES, VALUES and QUERY are nil and AV-PAIRS is an alist -of (attribute value) pairs." +ATTRIBUTES and AV-PAIRS are nil. This can be used when values are +supplied for all attributes in TABLE. In the second, ATTRIBUTES +is a list of column names, VALUES is a corresponding list of +values and AV-PAIRS is nil. In the third, ATTRIBUTES and VALUES +are nil and AV-PAIRS is an alist of (attribute value) pairs." (when av-pairs (setf attributes (mapcar #'car av-pairs) values (mapcar #'cadr av-pairs))) @@ -211,8 +192,6 @@ of (attribute value) pairs." (execute-command stmt :database database))) -;; iteration - ;; output-sql (defmethod database-output-sql ((str string) database) @@ -322,8 +301,8 @@ of (attribute value) pairs." (when sequence (create-sequence-from-class class))))) -;;; Iteration +;;; Iteration (defmacro do-query (((&rest args) query-expression &key (database '*default-database*) (result-types :auto)) @@ -483,7 +462,8 @@ computed for each field." ;;; Row processing macro from CLSQL -(defmacro for-each-row (((&rest fields) &key from order-by where distinct limit) &body body) +(defmacro for-each-row (((&rest fields) &key from order-by where distinct limit) + &body body) (let ((d (gensym "DISTINCT-")) (bind-fields (loop for f in fields collect (car f))) (w (gensym "WHERE-"))