X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Fdatabase.lisp;h=b860d309f628d4de7001506809d48dbf90ddf712;hp=bb87046fb6c8ce494976b9293efbc11d997b7e9d;hb=0b35694f3659e5ee739ea72ce74d798c3f0ddb73;hpb=96cc4dd98e77b8a1f83fa850e3348219c957b7ef diff --git a/sql/database.lisp b/sql/database.lisp index bb87046..b860d30 100644 --- a/sql/database.lisp +++ b/sql/database.lisp @@ -104,7 +104,7 @@ be taken from this pool." :verbose nil)) (if pool - (let ((conn (acquire-from-pool connection-spec database-type pool))) + (let ((conn (acquire-from-pool connection-spec database-type pool encoding))) (when make-default (setq *default-database* conn)) conn) (let* ((db-name (database-name-from-spec connection-spec database-type)) @@ -193,7 +193,9 @@ and signal an sql-user-error if they don't match. This function is called by database backends." `(handler-case (destructuring-bind ,template ,connection-spec - (declare (ignore ,@(remove '&optional template))) + (declare (ignore ,@(remove-if + (lambda (x) (member x '(&key &rest &optional))) + template))) t) (error () (error 'sql-user-error @@ -234,7 +236,7 @@ database connection cannot be closed, an error is signalled." (ignore-errors (disconnect :database db)) (disconnect :database db :error nil))) - (connect (connection-spec db)))) + (connect (connection-spec db) :encoding (encoding db)))) (defun status (&optional full)