[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source PgConnection.cs,1.23,1.24
Status: Inactive
Brought to you by:
carlosga_fb
From: Carlos G. Á. <car...@us...> - 2005-04-14 18:50:51
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29040 Modified Files: PgConnection.cs Log Message: Close commands only on connection close instead of dispose them Index: PgConnection.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgConnection.cs,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** PgConnection.cs 8 Apr 2005 14:25:15 -0000 1.23 --- PgConnection.cs 14 Apr 2005 18:50:42 -0000 1.24 *************** *** 364,370 **** // Dispose Active commands ! this.connectionInternal.DisposePreparedCommands(); ! // Rollback active transation this.connectionInternal.DisposeActiveTransaction(); --- 364,370 ---- // Dispose Active commands ! this.connectionInternal.ClosePreparedCommands(); ! // Rollback active transaction this.connectionInternal.DisposeActiveTransaction(); |