[Mono-bugs] [Bug 70408][Nor] Changed - OracleCommand.ExecuteReader fails with non query

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 19 Dec 2004 07:22:00 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by danielmorgan@verizon.net.

http://bugzilla.ximian.com/show_bug.cgi?id=70408

--- shadow/70408	2004-12-09 22:19:49.000000000 -0500
+++ shadow/70408.tmp.29693	2004-12-19 07:22:00.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 70408
 Product: Mono: Class Libraries
 Version: 1.0
-OS: 
+OS: unknown
 OS Details: Windows XP Pro SP2
-Status: NEW   
-Resolution: 
-Severity: 
+Status: RESOLVED   
+Resolution: FIXED
+Severity: Unknown
 Priority: Normal
 Component: Sys.Data
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: danielmorgan@verizon.net               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -93,6 +93,13 @@
 			}
 		}
 		reader.Close ();
 		con.Close ();
 	}
 }
+
+------- Additional Comments From danielmorgan@verizon.net  2004-12-19 07:22 -------
+Afer a Prepare(), the statement type attribute needed to be retrieved
+to determine whether the SQL command text is a non query or not.  If
+non query, execute as a non query; otherwise, execute as a query.
+
+See svn revision 37932 in mcs for the patch.