X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=sql-classes.lisp;h=e567a46d7442e7a992282c56e615bf90281f4fd6;hb=5187a72f9569a1fd67d0bd713c2930444a157fb8;hp=d9990b575b38dee4b15f651cea1d376f5126581b;hpb=a71c8076ec9c8e6049b470133ec0df2d821a7fa5;p=umlisp.git diff --git a/sql-classes.lisp b/sql-classes.lisp index d9990b5..e567a46 100644 --- a/sql-classes.lisp +++ b/sql-classes.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: sql-classes.lisp,v 1.41 2003/05/03 20:33:40 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.46 2003/05/03 20:56:57 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -60,15 +60,17 @@ 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~)~A" where-name + (if like " like " "=")))) `(concatenate 'string ,%%fields - (if ,where-name - (format nil (if (stringp ,where-value) - (if ,like " where ~A like '%~A%'" " where ~A='~A'") - " where ~A=~A") - ,where-name ,where-value) + ,@(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 ,srl (format nil ,%%lrl ,srl) "") ,@(when %%order (list %%order)) @@ -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))))