From: Kevin M. Rosenberg Date: Sat, 3 May 2003 20:29:40 +0000 (+0000) Subject: r4764: Auto commit for Debian build X-Git-Tag: v2006ac.2~234 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=068eec0adc89ada2feb8a5951d26186ce5335f2f;hp=3921045bc3aa458f28e5428f9b7f63d77c42a50c;p=umlisp.git r4764: Auto commit for Debian build --- diff --git a/sql-classes.lisp b/sql-classes.lisp index d1ec01e..5a91238 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.37 2003/05/03 20:24:22 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.38 2003/05/03 20:29:40 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -59,18 +59,18 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" &key (lrlname "KCUILRL") single distinct order like) (let* ((%%fields (format nil "select ~A~{~:@(~A~)~^,~} from ~:@(~A~)" (if distinct "distinct " "") fields table)) - (%%order (if order (format nil " order by ~{~:@(~A~) ~(~A~)~^,~}" order) ""))) + (%%order (if order (format nil " order by ~{~:@(~A~) ~(~A~)~^,~}" order) "")) + (%%lrl (format nil " and ~:@(~A~) <= ~~D" lrlname))) `(concatenate 'string ,%%fields (if ,where-name - (format nil - (if (stringp ,where-value) - (if ,like " where ~A like '%~A%'" " where ~A='~A'") - " where ~A=~A") + (format nil (if (stringp ,where-value) + (if ,like " where ~A like '%~A%'" " where ~A='~A'") + " where ~A=~A") ,where-name ,where-value) "") - (if ,srl (format nil " and ~:@(~A~) <= ~D" ,lrlname ,srl) "") + (if ,srl (format nil ,%%lrl ,srl) "") ,%%order (if ,single " limit 1" ""))))