r2006: debian
[clsql.git] / sql / classes.cl
index 8ba8c265b1fe4e3e0097867cad547cad7cc2de0a..4cb643ac71b0230b6d07fa5d0c13ca56dd076df8 100644 (file)
@@ -5,10 +5,10 @@
 ;;;; Name:          classes.cl
 ;;;; Purpose:       Classes for High-level SQL interface
 ;;;; Programmers:   Kevin M. Rosenberg based on
-;;;;                 Original code by Pierre R. Mai 
+;;;;                 original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: classes.cl,v 1.1 2002/03/29 08:13:02 kevin Exp $
+;;;; $Id: classes.cl,v 1.6 2002/05/07 10:19:13 marc.battyani Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
 
 
 (defclass database ()
-  ((name :initarg :name :reader database-name))
+  ((name :initform nil :initarg :name :reader database-name)
+   (connection-spec :initform nil :initarg :connection-spec :reader connection-spec
+                   :documentation "Require to use connection pool")
+   (transaction-level :initform 0 :accessor transaction-level)
+   (transaction :initform nil :accessor transaction)
+   (conn-pool :initform nil :initarg :conn-pool :accessor conn-pool))
   (:documentation
    "This class is the supertype of all databases handled by CLSQL."))
 
                      "<unbound>")
                  stream)))
 
+;; Closed database idea and original code comes from UncommonSQL
 
 (defclass closed-database ()
   ((name :initarg :name :reader database-name))
   (:documentation
-   "This class represents all databases after they are closed via
-`disconnect'."))
+   "This class represents databases after they are closed via 'disconnect'."))
 
 (defmethod print-object ((object closed-database) stream)
   (print-unreadable-object (object stream :type t :identity t)