зеркало из https://github.com/mono/mail-archives.git
124 строки
4.4 KiB
HTML
124 строки
4.4 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-bugs] [Bug 53069][Cri] Changed - Stored proc returning more than one result set hangs
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:bugzilla-daemon%40bugzilla.ximian.com">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
|
|
<LINK REL="Previous" HREF="016664.html">
|
|
<LINK REL="Next" HREF="016666.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-bugs] [Bug 53069][Cri] Changed - Stored proc returning more than one result set hangs
|
|
</H1>
|
|
<B>bugzilla-daemon@bugzilla.ximian.com
|
|
</B>
|
|
<A HREF="mailto:bugzilla-daemon%40bugzilla.ximian.com"
|
|
TITLE="[Mono-bugs] [Bug 53069][Cri] Changed - Stored proc returning more than one result set hangs">bugzilla-daemon@bugzilla.ximian.com
|
|
</A><BR>
|
|
<I>Thu, 3 Jun 2004 03:47:08 -0400 (EDT)</I>
|
|
<P><UL>
|
|
<LI> Previous message: <A HREF="016664.html">[Mono-bugs] [Bug 59534][Blo] Changed - New MONO Beta 2 bug reading from bufferedstream.
|
|
</A></li>
|
|
<LI> Next message: <A HREF="016666.html">[Mono-bugs] [Bug 59537][Nor] New - improve NameTable performance
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#16665">[ date ]</a>
|
|
<a href="thread.html#16665">[ thread ]</a>
|
|
<a href="subject.html#16665">[ subject ]</a>
|
|
<a href="author.html#16665">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE>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 <A HREF="mailto:sumadevi@novell.com.">sumadevi@novell.com.</A>
|
|
|
|
<A HREF="http://bugzilla.ximian.com/show_bug.cgi?id=53069">http://bugzilla.ximian.com/show_bug.cgi?id=53069</A>
|
|
|
|
--- shadow/53069 2004-05-13 15:28:50.000000000 -0400
|
|
+++ shadow/53069.tmp.6814 2004-06-03 03:47:08.000000000 -0400
|
|
@@ -1,13 +1,13 @@
|
|
Bug#: 53069
|
|
Product: Mono: Class Libraries
|
|
Version: unspecified
|
|
OS: Debian Potato
|
|
OS Details:
|
|
-Status: NEW
|
|
-Resolution:
|
|
+Status: RESOLVED
|
|
+Resolution: FIXED
|
|
Severity: Unknown
|
|
Priority: Critical
|
|
Component: Sys.Data.SqlClient
|
|
AssignedTo: <A HREF="mailto:sumadevi@novell.com">sumadevi@novell.com</A>
|
|
ReportedBy: <A HREF="mailto:dheizer_avisi@hotmail.com">dheizer_avisi@hotmail.com</A>
|
|
QAContact: <A HREF="mailto:mono-bugs@ximian.com">mono-bugs@ximian.com</A>
|
|
@@ -43,6 +43,44 @@
|
|
|
|
Everytime
|
|
|
|
Additional Information:
|
|
|
|
None
|
|
+
|
|
+------- Additional Comments From <A HREF="mailto:sumadevi@novell.com">sumadevi@novell.com</A> 2004-06-03 03:47 -------
|
|
+Hello,
|
|
+ I tried with the following sample program and dont see the problem.
|
|
+I have written the sample program based on your description of the
|
|
+problem.
|
|
+
|
|
+ string com = "EXECUTE sptest";
|
|
+ cmd = new SqlCommand(com,con);
|
|
+ try
|
|
+ {
|
|
+ reader = cmd.ExecuteReader();
|
|
+
|
|
+ while (reader.Read())
|
|
+ {
|
|
+ Console.WriteLine(reader.GetString(0));
|
|
+ }
|
|
+ if (reader.NextResult())
|
|
+ {
|
|
+
|
|
+
|
|
+ while (reader.Read())
|
|
+ {
|
|
+ Console.WriteLine(reader.GetString(0));
|
|
+ }
|
|
+
|
|
+sptest STORED PROCEDURE is defined as follows
|
|
+
|
|
+ ALTER PROCEDURE sptest
|
|
+AS
|
|
+ Select name from table1;
|
|
+ SELECT city from table2;
|
|
+RETURN
|
|
+
|
|
+
|
|
+I assume that the problem is fixed.
|
|
+Incase otherwise please let me know.
|
|
+
|
|
|
|
</PRE>
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI> Previous message: <A HREF="016664.html">[Mono-bugs] [Bug 59534][Blo] Changed - New MONO Beta 2 bug reading from bufferedstream.
|
|
</A></li>
|
|
<LI> Next message: <A HREF="016666.html">[Mono-bugs] [Bug 59537][Nor] New - improve NameTable performance
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#16665">[ date ]</a>
|
|
<a href="thread.html#16665">[ thread ]</a>
|
|
<a href="subject.html#16665">[ subject ]</a>
|
|
<a href="author.html#16665">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
</body></html>
|