From: Kevin M. Rosenberg Date: Mon, 21 Jul 2003 11:23:05 +0000 (+0000) Subject: r5365: *** empty log message *** X-Git-Tag: v2006ac.2~128 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=da70bc391acaeb38f7c2b2e9085a2a6fc49a9bea r5365: *** empty log message *** --- diff --git a/sql-classes.lisp b/sql-classes.lisp index 52b9ce8..34cbd2a 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.89 2003/07/21 09:46:22 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.90 2003/07/21 11:22:51 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2003 by Kevin M. Rosenberg, M.D. @@ -833,15 +833,14 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" (make-instance 'bsab :sab sab :name name :hits (ensure-integer count)))) (defun find-btty-tty (tty) - (:collect-umlisp-query (bonus_tty (name count) nil tty tty :single t) + (collect-umlisp-query (bonus_tty (name count) nil tty tty :single t) (make-instance 'btty :tty tty :name name :hits (ensure-integer count)))) (defun find-btty-all () - (u::collect-umlisp-query (bonus_tty (tty name count) nil nil nil :order (tty asc)) + (collect-umlisp-query (bonus_tty (tty name count) nil nil nil :order (tty asc)) (make-instance 'btty :tty tty :name name :hits (ensure-integer count)))) (defun find-brel-rel (rel) - (u::collect-umlisp-query (bonus_rel (sab sl rel rela count) nil rel rel) - (make-instance 'brel :sab sab :sl sl :rel rel :rela rela + (collect-umlisp-query (bonus_rel (sab sl rel rela count) nil rel rel) + (make-instance 'brel :sab sab :sl sl :rel rel :rela rela :hits (ensure-integer count)))) -