X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Foodml.lisp;h=072bc4a633838be2806c4505fc7da47400da6b34;hb=bd6843e2084ce45d3d7b769e383c3cac589b5e93;hp=169fa89d70d6f0fe17e834749e9a27f337cfe2f8;hpb=c1d990950afa607b9d7e428da384b057fd5c74f3;p=clsql.git diff --git a/sql/oodml.lisp b/sql/oodml.lisp index 169fa89..072bc4a 100644 --- a/sql/oodml.lisp +++ b/sql/oodml.lisp @@ -600,29 +600,36 @@ (declare (ignore db-type)) (cond ;; null value or type - ((or (equalp "nil" val) (eql 'null val)) nil) - + ((or (null val) + (equalp "nil" val) + (eql 'null val) + (eql 'null type)) + nil) + ;; no specified type or already the right type ((or (null type) (ignore-errors (typep val type))) val) ;; actually convert - (t + (t (let ((res (handler-bind ;; all errors should be converted to sql-value-conversion-error ((error (lambda (c) - (when *debugger-hook* - (invoke-debugger c)) (unless (typep c 'sql-value-conversion-error) + ;; this was blowing up the tests till I + ;; unbound *debugger-hook* not sure the answer, + ;; as this is also imensely useful in actually + ;; finding bugs below this point + (when *debugger-hook* (invoke-debugger c)) (error-converting-value val type database))))) (call-next-method)))) ;; if we didnt get the right type after converting, we should probably ;; error right away - (maybe-error-converting-value - res val type database))))) + (maybe-error-converting-value res val type database))))) (defmethod read-sql-value (val type database db-type) + "read a sql value, from :around read-eval is disabled read numbers in base 10" ;; errors, nulls and preconverted types are already handled in around (typecase type (symbol @@ -644,9 +651,9 @@ (double-float 'double-float)))) (read-from-string val))) ;; maybe wrong type of float - (float val)) + (float val)) (if (eql type 'double-float) 1.0d0 1.0s0))) - (number (read-from-string val)) + (number (read-decimal-value val)) ((boolean generalized-boolean) (if (member val '(nil t)) val @@ -657,7 +664,8 @@ (number (not (zerop val)))))) ((wall-time duration) (parse-timestring val)) (date (parse-datestring val)) - (t (call-next-method)))) + (list (read-from-string val)) + (t (error-converting-value val type database)))) (t (typecase val (string (read-from-string val)) (t (error-converting-value val type database))))))