r4771: Auto commit for Debian build
[umlisp.git] / sql-classes.lisp
index 9d64345db65eccd6f50a5b673256b2dcccd21aea..4665dedde1ef06319a78b008d0bc61b3eb2e3ded 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: sql-classes.lisp,v 1.40 2003/05/03 20:33:16 kevin Exp $
+;;;; $Id: sql-classes.lisp,v 1.45 2003/05/03 20:47:28 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -60,19 +60,21 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with 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) ""))
-        (%%lrl (format nil " and ~:@(~A~) <= ~~D" lrlname)))
+        (%%lrl (format nil " and ~:@(~A~) <= ~~D" lrlname))
+        (%%where (format nil " where ~:@(~A~)" where-name)))
     `(concatenate
       'string
       ,%%fields
-      (if ,where-name
+      ,@(when %%where (list %%where))
+      (if (quote ,where-name)
          (format nil (if (stringp ,where-value)
-                         (if ,like " where ~A like '%~A%'" " where ~A='~A'")
-                         " where ~A=~A")
-                 ,where-name ,where-value)
+                         ,(if like " like '%~A%'" "='~A'")
+                         "=~A")
+                 ,where-value)
          "")
       (if ,srl (format nil ,%%lrl ,srl) "")
       ,@(when %%order (list %%order))
-      ,@(when single (" limit 1")))))
+      ,@(when single (list " limit 1")))))
 
 (defun query-string (table fields &optional srl where-name where-value
                     &key (lrlname "KCUILRL") single distinct order like)
@@ -95,7 +97,7 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
 
 (defun find-ucon-cui (cui &key (srl *current-srl*))
   "Find ucon for a cui"
-  (with-umlisp-query (mrcon (kpfstr kcuilrl) srl 'cui (parse-cui cui) :single t)
+  (with-umlisp-query (mrcon (kpfstr kcuilrl) srl cui (parse-cui cui) :single t)
     (make-instance 'ucon :cui (parse-cui cui)
                   :pfstr kpfstr
                   :lrl (ensure-integer kcuilrl))))