[pgsqlclient-checkins] pgsqlclient/PostgreSql.Data.PGSqlClient.UnitTests/source PGCommandTest.cs,1.1
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-07-13 12:39:35
|
Update of /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient.UnitTests/source In directory sc8-pr-cvs1:/tmp/cvs-serv18807 Modified Files: PGCommandTest.cs Log Message: Fixed incorrect update command text. Index: PGCommandTest.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient.UnitTests/source/PGCommandTest.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** PGCommandTest.cs 12 Jul 2003 08:11:23 -0000 1.1.1.1 --- PGCommandTest.cs 13 Jul 2003 12:39:30 -0000 1.2 *************** *** 32,36 **** Console.WriteLine("\r\nPGCommandTest.ExecuteNonQueryTest"); ! string commandText = "update public.test_table set char_field = @char_field and varchar_field = @varchar_field where int_field = @int_field"; PGTransaction transaction = Connection.BeginTransaction(); --- 32,36 ---- Console.WriteLine("\r\nPGCommandTest.ExecuteNonQueryTest"); ! string commandText = "update public.test_table set char_field = @char_field, varchar_field = @varchar_field where int_field = @int_field"; PGTransaction transaction = Connection.BeginTransaction(); |