From: Kevin M. Rosenberg Date: Sat, 3 May 2003 19:57:11 +0000 (+0000) Subject: r4754: Auto commit for Debian build X-Git-Tag: v2006ac.2~244 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=dd3e2d80da5c72c86b90f1dd33c0316650027f1b r4754: Auto commit for Debian build --- diff --git a/sql-classes.lisp b/sql-classes.lisp index 08d16cf..275686e 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.27 2003/05/03 19:53:59 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.28 2003/05/03 19:57:11 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -59,7 +59,7 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" (defmacro query-string-macro (table fields &optional srl where-name where-value &key (lrlname "KCUILRL") single distinct order like) (let* ((%%fields (format nil "select ~A~{~:@(~A~)~^,~}" - (if distinct "distinct " "") (quote fields))) + (if distinct "distinct " "") fields)) (%%order (if order (format nil " order by ~{~:@(~A~) ~(~A~)~^,~}" order) ""))) `(concatenate 'string