[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source PgCommand.cs,1.20,1.21
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-12-05 18:15:34
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source In directory sc8-pr-cvs1:/tmp/cvs-serv31266 Modified Files: PgCommand.cs Log Message: Minor change for try to improve statement execution. Index: PgCommand.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgCommand.cs,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** PgCommand.cs 2 Dec 2003 11:38:27 -0000 1.20 --- PgCommand.cs 5 Dec 2003 18:15:31 -0000 1.21 *************** *** 447,452 **** parseParameterNames()); ! // Prepare the statment ! this.statement.Prepare(); } else --- 447,455 ---- parseParameterNames()); ! // Parse statement ! this.statement.Parse(); ! ! // Describe statement ! this.statement.Parse(); } else |