From: Kevin M. Rosenberg Date: Sat, 3 May 2003 20:56:57 +0000 (+0000) Subject: r4772: Auto commit for Debian build X-Git-Tag: v2006ac.2~226 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=5187a72f9569a1fd67d0bd713c2930444a157fb8 r4772: Auto commit for Debian build --- diff --git a/sql-classes.lisp b/sql-classes.lisp index 4665ded..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.45 2003/05/03 20:47:28 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. @@ -61,16 +61,16 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" (if distinct "distinct " "") fields table)) (%%order (if order (format nil " order by ~{~:@(~A~) ~(~A~)~^,~}" order) "")) (%%lrl (format nil " and ~:@(~A~) <= ~~D" lrlname)) - (%%where (format nil " where ~:@(~A~)" where-name))) + (%%where (format nil " where ~:@(~A~)~A" where-name + (if like " like " "=")))) `(concatenate 'string ,%%fields ,@(when %%where (list %%where)) (if (quote ,where-name) - (format nil (if (stringp ,where-value) - ,(if like " like '%~A%'" "='~A'") - "=~A") - ,where-value) + (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))