X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Fclasses.cl;h=c83b2008a079a87271278c35e3bcea24bd69bdcd;hb=1785177d3364ad0ad8917193b5b00310ef88105e;hp=72e44c7dcb9a6e139d015f0fbea42127836ae8a8;hpb=d302d2db4f7ff7a31bce893e31aecbc2a84a162f;p=clsql.git diff --git a/sql/classes.cl b/sql/classes.cl index 72e44c7..c83b200 100644 --- a/sql/classes.cl +++ b/sql/classes.cl @@ -8,7 +8,7 @@ ;;;; original code by Pierre R. Mai ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: classes.cl,v 1.3 2002/04/27 21:48:08 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 :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."))