r4776: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 May 2003 22:05:50 +0000 (22:05 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 May 2003 22:05:50 +0000 (22:05 +0000)
sql-classes.lisp

index 304bf08a9915ddb994eb3846d34522abc97e08e8..16f6c9265ba2c4b8a8b3b730fb600314a350d90a 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: sql-classes.lisp,v 1.49 2003/05/03 22:05:00 kevin Exp $
+;;;; $Id: sql-classes.lisp,v 1.50 2003/05/03 22:05:50 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -69,9 +69,9 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
       ,%%fields
       ,@(when %%where (list %%where))
       ,@(when %%where
-             `((if (numberp where-value)
+             `((if (numberp ,where-value)
                    (write-to-string where-value)
-                   (format nil ,(if like "'%~A%'" "'~A'") where-value))))
+                   (format nil ,(if like "'%~A%'" "'~A'") ,where-value))))
       (if ,srl (concatenate 'string ,%%lrl (write-to-string ,srl)) "")
       ,@(when %%order (list %%order))
       ,@(when single (list " limit 1")))))