clsql/sql sql.lisp,1.4,1.5

"Kevin M. Rosenberg" <[email protected]> Mon, 5 May 2003 20:27:10 -0600
Newsgroups gmane.lisp.clsql.cvs
Message-ID <[email protected]>
Update of /pubcvs/clsql/sql
In directory boa.b9.com:/tmp/cvs-serv28862/sql

Modified Files:
	sql.lisp 
Log Message:
Auto commit for Debian build

Index: sql.lisp
===================================================================
RCS file: /pubcvs/clsql/sql/sql.lisp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** sql.lisp	14 Nov 2002 18:52:47 -0000	1.4
--- sql.lisp	6 May 2003 02:27:08 -0000	1.5
***************
*** 3,11 ****
  ;;;; FILE IDENTIFICATION
  ;;;;
! ;;;; Name:          sql.cl
! ;;;; Purpose:       High-level SQL interface
! ;;;; Programmers:   Kevin M. Rosenberg based on
! ;;;;                 Original code by Pierre R. Mai 
! ;;;; Date Started:  Feb 2002
  ;;;;
  ;;;; $Id$
--- 3,10 ----
  ;;;; FILE IDENTIFICATION
  ;;;;
! ;;;; Name:         sql.cl
! ;;;; Purpose:      High-level SQL interface
! ;;;; Authors:      Kevin M. Rosenberg based on code by Pierre R. Mai 
! ;;;; Date Started: Feb 2002
  ;;;;
  ;;;; $Id$
***************
*** 19,32 ****
  ;;;; *************************************************************************
  
! (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
! (in-package :clsql-sys)
! 
! ;;; Modified by KMR 
! ;;; - to use CMUCL-COMPAT library 
! ;;; - fix format strings in error messages 
! ;;; - use field types
! 
  
! ;;; Simple implementation of SQL along the lines of Harlequin's Common SQL
  
  
--- 18,25 ----
  ;;;; *************************************************************************
  
! (eval-when (:compile-toplevel)
!   (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))))
  
! (in-package #:clsql-sys)