From: Kevin M. Rosenberg Date: Sun, 4 May 2003 04:41:07 +0000 (+0000) Subject: r4798: Auto commit for Debian build X-Git-Tag: v2006ac.2~203 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=6dba4359eae9d2481f82d8c7c109eb5a3bc34c45 r4798: Auto commit for Debian build --- diff --git a/sql-classes.lisp b/sql-classes.lisp index 6a3ccd0..8a400e1 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.68 2003/05/04 03:45:05 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.69 2003/05/04 04:41:07 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -198,6 +198,13 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" :order (cui asc) :distinct t) :database db))) +(defun find-ucon-all2 (&key (srl *current-srl*)) + "Return list of all ucon's" + (with-umlisp-query (mrcon (cui kpfstr kcuilrl) srl nil nil :order (cui asc) :distinct t) + (make-instance 'ucon :cui (ensure-integer cui) + :pfstr kpfstr + :lrl (ensure-integer kcuilrl)))) + (defun map-ucon-all (fn &key (srl *current-srl*)) "Map a function over all ucon's" (with-sql-connection (db)