r4755: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 May 2003 20:01:18 +0000 (20:01 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 3 May 2003 20:01:18 +0000 (20:01 +0000)
sql-classes.lisp

index 275686e8e85170ea1d4c987a45187e29e9bc65bd..f11b8913e714c020572e2102b5eb08b526080139 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: sql-classes.lisp,v 1.28 2003/05/03 19:57:11 kevin Exp $
+;;;; $Id: sql-classes.lisp,v 1.29 2003/05/03 20:01:18 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -58,20 +58,20 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
   
 (defmacro query-string-macro (table fields &optional srl where-name where-value
                        &key (lrlname "KCUILRL") single distinct order like)
-  (let* ((%%fields (format nil "select ~A~{~:@(~A~)~^,~}"
-                          (if distinct "distinct " "") fields))
+  (let* ((%%fields (format nil "select ~A~{~:@(~A~)~^,~} from ~:@(~A~)"
+                          (if distinct "distinct " "") fields table))
         (%%order (if order (format nil " order by ~{~:@(~A~) ~(~A~)~^,~}" order) "")))
     `(concatenate
       'string
-      (format nil "select ~A from ~:@(~A~)" ,%%fields ,table)
+      %%fields
       (if ,where-name
          (format nil
                  (if (stringp ,where-value)
-                     (if like
+                     (if ,like
                          " where ~A like '%~A%'"
                          " where ~A='~A'")
                      " where ~A=~A")
-                 ,where-name  ,where-value)
+                 ,where-name ,where-value)
          "")
       (if ,srl (format nil " and ~:@(~A~) <= ~D" ,lrlname ,srl) "")
       ,%%order