[Mono-bugs] [Bug 61177][Wis] New - ExecuteReader.read() value is false
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 5 Jul 2004 12:32:56 -0400 (EDT)
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 bogdan.avram@ulpmm.u-strasbg.fr.
http://bugzilla.ximian.com/show_bug.cgi?id=61177
--- shadow/61177 2004-07-05 12:32:56.000000000 -0400
+++ shadow/61177.tmp.30840 2004-07-05 12:32:56.000000000 -0400
@@ -0,0 +1,59 @@
+Bug#: 61177
+Product: Mono: Class Libraries
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: Debian stable,unstable,testing with Mono 1.0
+Status: NEW
+Resolution:
+Severity: 040 One week
+Priority: Wishlist
+Component: Sys.Data
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: bogdan.avram@ulpmm.u-strasbg.fr
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: ExecuteReader.read() value is false
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+
+I'am working with MS-SQL Server stored procedures, I make the procedure
+call using System.Data.SqlCommand.ExecuteReader() but the
+ExecuteReader.read() method return false. The same code works fine under
+the Microsoft.Net Framework
+
+
+Steps to reproduce the problem:
+1. use an Microsoft SQL Serveur
+2. create a stored procedure:
+
+CREATE PROCEDURE Cours_RestaureCours
+ @Id UNIQUEIDENTIFIER
+AS
+ SET NOCOUNT ON
+ SELECT IdContenuPedagogique, IdFormation, DateCreation,
+IdUtilisateurConcepteur
+ FROM Cours
+ WHERE Id = @Id
+
+GO
+
+3. Call this procedures using System.Data.SqlCommand.ExecuteReader()
+
+Actual Results:
+
+the ExecuteReader.read() return value is false
+
+
+Expected Results:
+
+
+How often does this happen?
+
+every time (100% fail)
+
+
+Additional Information: