[Mono-bugs] [Bug 66087][Min] Changed - Using uniqueidentifier parameters with Tds70 and SQL 2000 doesn't work
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 6 Oct 2004 06:50:18 -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 sumadevi@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=66087
--- shadow/66087 2004-09-16 09:00:19.000000000 -0400
+++ shadow/66087.tmp.5203 2004-10-06 06:50:18.000000000 -0400
@@ -2,16 +2,16 @@
Product: Mono: Class Libraries
Version: unspecified
OS: Red Hat 9.0
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Minor
Component: Sys.Data.SqlClient
-AssignedTo: rodrigo@novell.com
+AssignedTo: sumadevi@novell.com
ReportedBy: jsinger@eggmouse.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
Summary: Using uniqueidentifier parameters with Tds70 and SQL 2000 doesn't work
@@ -53,6 +53,18 @@
The Guid is converted to a binary presentation of uniqueidentifier, which
seems not to work in SQL 2000 SP3 (see below to reproduce). This could be
fixed by using the string-representation:
value = String.Format ("'{0}'", ((Guid) parameter.Value).ToString());
+
+------- Additional Comments From sumadevi@novell.com 2004-10-06 06:50 -------
+Hello
+ I am not able to replicate the problem.
+Can you please give me the exact steps.
+Are you calling the stored procedure from the C# mono code?
+The bug description says query analyzer.
+
+I tried by creating a stored procedure to do the select. But the
+stored procedure doesnot return any values even in case of .NET.
+Mono is behaving the same as .NET.
+Please clarify with the sample code.