[pgsqlclient-checkins] SF.net SVN: pgsqlclient: [62] trunk/pgsqlclient/source/UnitTests/PgDataReader
Status: Inactive
Brought to you by:
carlosga_fb
|
From: <car...@us...> - 2006-03-28 12:14:30
|
Revision: 62 Author: carlosga_fb Date: 2006-03-28 04:14:23 -0800 (Tue, 28 Mar 2006) ViewCVS: http://svn.sourceforge.net/pgsqlclient/?rev=62&view=rev Log Message: ----------- ?\194?\183 Removed non valid test case Modified Paths: -------------- trunk/pgsqlclient/source/UnitTests/PgDataReaderTest.cs Modified: trunk/pgsqlclient/source/UnitTests/PgDataReaderTest.cs =================================================================== --- trunk/pgsqlclient/source/UnitTests/PgDataReaderTest.cs 2006-03-28 12:13:51 UTC (rev 61) +++ trunk/pgsqlclient/source/UnitTests/PgDataReaderTest.cs 2006-03-28 12:14:23 UTC (rev 62) @@ -201,50 +201,6 @@ command.Dispose(); } - [Test] - [Ignore] - public void NextResultTest() - { - string querys = - "select * from public.test_table order by int4_field asc;" + - "select * from public.test_table order by int4_field desc;"; - - PgCommand command = new PgCommand(querys, Connection); - - PgDataReader reader = command.ExecuteReader(); - - Console.WriteLine(); - Console.WriteLine("DataReader - NextResult Method - Test ( First Result )"); - - while (reader.Read()) - { - for(int i = 0; i < reader.FieldCount; i++) - { - Console.Write(reader.GetValue(i) + "\t"); - } - - Console.WriteLine(); - } - - if (reader.NextResult()) - { - Console.WriteLine("DataReader - NextResult Method - Test ( Second Result )"); - - while (reader.Read()) - { - for(int i = 0; i < reader.FieldCount; i++) - { - Console.Write(reader.GetValue(i) + "\t"); - } - - Console.WriteLine(); - } - } - - reader.Close(); - command.Dispose(); - } - #endregion } } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |