r4773: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 May 2003 21:26:35 +0000 (21:26 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 May 2003 21:26:35 +0000 (21:26 +0000)
sql-classes.lisp

index e567a46d7442e7a992282c56e615bf90281f4fd6..1fe206d7e0fc8097b2c313eaba74b1aab90e0631 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: sql-classes.lisp,v 1.46 2003/05/03 20:56:57 kevin Exp $
+;;;; $Id: sql-classes.lisp,v 1.47 2003/05/03 21:26:35 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -68,11 +68,11 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
       ,%%fields
       ,@(when %%where (list %%where))
       (if (quote ,where-name)
-         (if (stringp ,where-value)
-             (format nil ,(if like "'%~A%'" "'~A'") ,where-value)
-             (write-to-string ,where-value))
+         (if (numberp ,where-value)
+             (write-to-string ,where-value)
+             (format nil ,(if like "'%~A%'" "'~A'") ,where-value))
          "")
-      (if ,srl (format nil ,%%lrl ,srl) "")
+      (if ,srl (concatenate 'string ,%%lrl (write-to-string ,srl)) "")
       ,@(when %%order (list %%order))
       ,@(when single (list " limit 1")))))