[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source PgCommand.cs,1.36,1.37
Status: Inactive
Brought to you by:
carlosga_fb
From: Carlos G. Á. <car...@us...> - 2004-06-10 08:33:11
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13670 Modified Files: PgCommand.cs Log Message: Fix for PgCommand.NextResult (Thanks to Sion for his feedback) Index: PgCommand.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgCommand.cs,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** PgCommand.cs 3 May 2004 20:30:15 -0000 1.36 --- PgCommand.cs 10 Jun 2004 08:33:01 -0000 1.37 *************** *** 545,550 **** this.statement = null; ! if ((this.commandBehavior & CommandBehavior.SingleResult) == CommandBehavior.SingleResult || ! this.commandBehavior == System.Data.CommandBehavior.Default) { this.actualCommand++; --- 545,549 ---- this.statement = null; ! if ((behavior & CommandBehavior.SingleResult) != CommandBehavior.SingleResult) { this.actualCommand++; *************** *** 557,561 **** { string commandText = this.commands[actualCommand]; - if (commandText != null && commandText.Trim().Length > 0) { --- 556,559 ---- |