X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Foodml.lisp;h=072bc4a633838be2806c4505fc7da47400da6b34;hp=5a966e7abd554a2bf811a021e792ea7960575222;hb=6ba1e44b4faf89ed2aa0ebdf410eebd65e04b3a5;hpb=f2e97f7b39c1cf82b6f3d1cec9362e551761549e diff --git a/sql/oodml.lisp b/sql/oodml.lisp index 5a966e7..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,13 +664,10 @@ (number (not (zerop val)))))) ((wall-time duration) (parse-timestring val)) (date (parse-datestring val)) - (list (let ((*read-eval* nil)) - (read-from-string val))) + (list (read-from-string val)) (t (error-converting-value val type database)))) (t (typecase val - (string - (let ((*read-eval* nil)) - (read-from-string val))) + (string (read-from-string val)) (t (error-converting-value val type database)))))) ;; ------------------------------------------------------------