r9505: Automated commit for Debian build of umlisp-orf upstream-version-3.3.0
[umlisp.git] / sql.lisp
index d3132ab191e0882c3dc6f9ba048e2dda0122ccee..863c9ef79604dd0e0c3d8dd782608774cfc1dc95 100644 (file)
--- a/sql.lisp
+++ b/sql.lisp
@@ -2,15 +2,15 @@
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
-;;;; Name:          sql.lisp
-;;;; Purpose:       Low-level SQL routines data for UMLisp
-;;;; Author:        Kevin M. Rosenberg
-;;;; Date Started:  Apr 2000
+;;;; Name:     sql.lisp
+;;;; Purpose:  Low-level SQL routines data for UMLisp
+;;;; Author:   Kevin M. Rosenberg
+;;;; Created:  Apr 2000
 ;;;;
 ;;;; $Id$
 ;;;;
 ;;;; This file, part of UMLisp, is
-;;;;    Copyright (c) 2000-2003 by Kevin M. Rosenberg, M.D.
+;;;;    Copyright (c) 2000-2004 by Kevin M. Rosenberg, M.D.
 ;;;;
 ;;;; UMLisp users are granted the rights to distribute and use this software
 ;;;; as governed by the terms of the GNU General Public License.
@@ -88,7 +88,7 @@
     (sql-execute stmt conn)))
 
 (defun sql-query (cmd conn &key (result-types :auto))
-  (clsql:query cmd :database conn :result-types result-types))
+  (clsql:query cmd :database conn :result-types result-types :field-names nil))
 
 (defun sql-execute (cmd conn)
   (clsql:execute-command cmd :database conn))