From: Kevin M. Rosenberg Date: Sat, 3 May 2003 20:08:21 +0000 (+0000) Subject: r4758: Auto commit for Debian build X-Git-Tag: v2006ac.2~240 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=a6eadf9e6d566a0342fccba766fb02f97a969a5a r4758: Auto commit for Debian build --- diff --git a/sql-classes.lisp b/sql-classes.lisp index 6d61d39..bdb79bd 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.31 2003/05/03 20:07:46 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.32 2003/05/03 20:08:21 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -50,10 +50,10 @@ &key (lrlname "KCUILRL") single distinct order like) "Query the UMLisp database. Return a list of umlisp objects whose name is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" - (when (or (not ,where-name) ,where-value) + `(when (or (not ,where-name) ,where-value) (mutex-sql-query (query-string-macro ,table ,fields ,srl ,where-name ,where-value - :lrlname ,lrlname :single ,single :distinct ,distinct :order ,order :like ,like)))) + :lrlname ,lrlname :single ,single :distinct ,distinct :order ,order :like ,like)))) (defmacro query-string-macro (table fields &optional srl where-name where-value