X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Fclasses.cl;h=4cb643ac71b0230b6d07fa5d0c13ca56dd076df8;hb=865598033baf78cf3ba9da36a031a85eb18849e0;hp=0a195a8519ef8a281c8e49d948e771abfe5b03c9;hpb=b92e0259d32da34329245e9ed96f31dc52d04d8b;p=clsql.git diff --git a/sql/classes.cl b/sql/classes.cl index 0a195a8..4cb643a 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.4 2002/04/28 00:50:17 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 @@ -23,11 +23,12 @@ (defclass database () - ((name :initarg :name :reader database-name) - (connection-spec :initarg :connection-spec :reader connection-spec + ((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 :initarg :transaction-level :accessor transaction-level)) - (:default-initargs :name nil :connection-spec nil :transaction-level 0) + (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."))