[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source PgTransaction.cs,1.1.1.1,1.
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-11-12 19:54:24
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source In directory sc8-pr-cvs1:/tmp/cvs-serv22477 Modified Files: PgTransaction.cs Log Message: 2003-11-12 Carlos Guzmán Álvarez <car...@te...> * source/PgTypes/PgBox.cs: * source/PgTypes/PgCircle.cs: * source/PgTypes/PgLine.cs: * source/PgTypes/PgLSeg.cs: * source/PgTypes/PgPath.cs: * source/PgTypes/PgPoint.cs: * source/PgTypes/PgPolygon.cs: - Added new constructors ( not to all ). - Added Serializable attribute. * source/PgTypes/PgBox.cs: - Added Serializable attribute. * source/PgTransaction.cs: - Removed set accessors from Connection and IsolationLEvel properties. Index: PgTransaction.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTransaction.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** PgTransaction.cs 2 Aug 2003 19:43:01 -0000 1.1.1.1 --- PgTransaction.cs 12 Nov 2003 19:54:19 -0000 1.2 *************** *** 45,50 **** public PgConnection Connection { ! get { return connection; } ! set { connection = value; } } --- 45,59 ---- public PgConnection Connection { ! get ! { ! if (!this.isUpdated) ! { ! return this.connection; ! } ! else ! { ! return null; ! } ! } } *************** *** 52,56 **** { get { return isolationLevel; } - set { isolationLevel = value; } } --- 61,64 ---- |