[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient PgStatement.cs,1.
Status: Inactive
Brought to you by:
carlosga_fb
From: Carlos G. Á. <car...@us...> - 2004-10-22 18:54:22
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20274 Modified Files: PgStatement.cs Log Message: Fixed bug #1052269 Index: PgStatement.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient/PgStatement.cs,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** PgStatement.cs 29 Sep 2004 12:10:53 -0000 1.27 --- PgStatement.cs 22 Oct 2004 18:54:05 -0000 1.28 *************** *** 166,171 **** this.rows = null; this.rowIndex = 0; ! this.parseName = String.Empty; ! this.portalName = String.Empty; this.recordsAffected = -1; this.status = PgStatementStatus.Initial; --- 166,171 ---- this.rows = null; this.rowIndex = 0; ! this.parseName = parseName; ! this.portalName = portalName; this.recordsAffected = -1; this.status = PgStatementStatus.Initial; |