[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source PgCommand.cs,1.14,1.15 PgDa
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-11-20 17:35:23
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source In directory sc8-pr-cvs1:/tmp/cvs-serv22195 Modified Files: PgCommand.cs PgDataReader.cs Log Message: Prepare for beta 4 Index: PgCommand.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgCommand.cs,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** PgCommand.cs 19 Nov 2003 15:19:18 -0000 1.14 --- PgCommand.cs 20 Nov 2003 17:34:42 -0000 1.15 *************** *** 418,421 **** --- 418,426 ---- internal void InternalPrepare() { + if (commands == null) + { + splitBatchCommands(false); + } + try { Index: PgDataReader.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgDataReader.cs,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** PgDataReader.cs 18 Nov 2003 14:19:44 -0000 1.13 --- PgDataReader.cs 20 Nov 2003 17:34:42 -0000 1.14 *************** *** 255,259 **** // Get Column Information ! if (cInfoCmd.Statement.Rows != null && cInfoCmd.Statement.Rows.Length > 0) { --- 255,259 ---- // Get Column Information ! if (cInfoCmd.Statement.Rows != null && cInfoCmd.Statement.Rows.Length > 0) { *************** *** 262,266 **** // Get Primary Key Info ! if (pKeyCmd.Statement.Rows != null && pKeyCmd.Statement.Rows.Length > 0) { --- 262,266 ---- // Get Primary Key Info ! if (pKeyCmd.Statement.Rows != null && pKeyCmd.Statement.Rows.Length > 0) { |