r1857: Completed connection pool.
[clsql.git] / sql / classes.cl
index 0a195a8519ef8a281c8e49d948e771abfe5b03c9..c83b2008a079a87271278c35e3bcea24bd69bdcd 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                 original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: classes.cl,v 1.4 2002/04/28 00:50:17 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
@@ -26,7 +26,8 @@
   ((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))
+   (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."))