r1857: Completed connection pool.
[clsql.git] / sql / classes.cl
index 8ba8c265b1fe4e3e0097867cad547cad7cc2de0a..c83b2008a079a87271278c35e3bcea24bd69bdcd 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.5 2002/05/01 20:22:16 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 :initarg :name :reader database-name)
+   (connection-spec :initarg :connection-spec :reader connection-spec
+                   :documentation "Require to use connection pool")
+   (transaction-level :initarg :transaction-level :accessor transaction-level)
+   (conn-pool :initarg :conn-pool :accessor conn-pool :initform nil))
+  (:default-initargs :name nil :connection-spec nil :transaction-level 0)
   (: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)