From 068eec0adc89ada2feb8a5951d26186ce5335f2f Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 3 May 2003 20:29:40 +0000 Subject: [PATCH] r4764: Auto commit for Debian build --- sql-classes.lisp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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" "")))) -- 2.34.1