зеркало из https://github.com/mono/mail-archives.git
144 строки
4.9 KiB
HTML
144 строки
4.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-bugs] [Bug 75257][Wis] New - Unable to connect directly to an
|
|
instance of SQL Server
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%2075257%5D%5BWis%5D%20New%20-%20Unable%20to%20connect%20directly%20to%20an%0A%09instance%20of%20SQL%20Server&In-Reply-To=bug-75257%40chernobyl.ximian.com">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="030402.html">
|
|
<LINK REL="Next" HREF="030404.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-bugs] [Bug 75257][Wis] New - Unable to connect directly to an
|
|
instance of SQL Server</H1>
|
|
<B>bugzilla-daemon at bugzilla.ximian.com</B>
|
|
<A HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%2075257%5D%5BWis%5D%20New%20-%20Unable%20to%20connect%20directly%20to%20an%0A%09instance%20of%20SQL%20Server&In-Reply-To=bug-75257%40chernobyl.ximian.com"
|
|
TITLE="[Mono-bugs] [Bug 75257][Wis] New - Unable to connect directly to an
|
|
instance of SQL Server">bugzilla-daemon at bugzilla.ximian.com
|
|
</A><BR>
|
|
<I>Tue Jun 14 03:51:51 EDT 2005</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="030402.html">[Mono-bugs] [Bug 75227][Nor] Changed - DataSet.GetChanges() fails
|
|
when dataset includes deleted rows
|
|
</A></li>
|
|
<LI>Next message: <A HREF="030404.html">[Mono-bugs] [Bug 75227][Nor] Changed - DataSet.GetChanges() fails
|
|
when dataset includes deleted rows
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#30403">[ date ]</a>
|
|
<a href="thread.html#30403">[ thread ]</a>
|
|
<a href="subject.html#30403">[ subject ]</a>
|
|
<a href="author.html#30403">[ 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="http://lists.ximian.com/mailman/listinfo/mono-bugs">dcampillo at gmail.com.</A>
|
|
|
|
<A HREF="http://bugzilla.ximian.com/show_bug.cgi?id=75257">http://bugzilla.ximian.com/show_bug.cgi?id=75257</A>
|
|
|
|
--- shadow/75257 2005-06-14 03:51:51.000000000 -0400
|
|
+++ shadow/75257.tmp.30106 2005-06-14 03:51:51.000000000 -0400
|
|
@@ -0,0 +1,70 @@
|
|
+Bug#: 75257
|
|
+Product: Mono: Class Libraries
|
|
+Version: 1.1
|
|
+OS:
|
|
+OS Details: Mandriva Limited Edition 2005
|
|
+Status: NEW
|
|
+Resolution:
|
|
+Severity:
|
|
+Priority: Wishlist
|
|
+Component: Sys.Data.SqlClient
|
|
+AssignedTo: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">rodrigo at novell.com</A>
|
|
+ReportedBy: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">dcampillo at gmail.com</A>
|
|
+QAContact: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mono-bugs at ximian.com</A>
|
|
+TargetMilestone: ---
|
|
+URL:
|
|
+Cc:
|
|
+Summary: Unable to connect directly to an instance of SQL Server
|
|
+
|
|
+Please fill in this template when reporting a bug, unless you know what you
|
|
+are doing.
|
|
+Description of Problem:
|
|
+I tried to connect to an instance of SQL Server using this connection
|
|
+string : "Data Source=lmbsvsql01\prod;Initial Catalog=AppStat;User
|
|
+Id=Me;Password=MyPass"
|
|
+
|
|
+C# Code :
|
|
+
|
|
+SqlConnection oCon;
|
|
+
|
|
+oCon = new SqlConnection("Data Source=lmbsvsql01\prod;Initial
|
|
+Catalog=AppStat;User Id=Me;Password=MyPass");
|
|
+
|
|
+try {
|
|
+oCon.Open();
|
|
+
|
|
+oCon.Close();
|
|
+}
|
|
+catch (Exception EX)
|
|
+{
|
|
+console.WriteLine(EX.Message);
|
|
+}
|
|
+Finally
|
|
+{
|
|
+oCon.dispose;
|
|
+}
|
|
+
|
|
+The problem is that under Windows I can connect to the instance "Prod" on
|
|
+the server "lmbsvsql01" ==> lmbsvsql01\prod
|
|
+
|
|
+With Mono, it want to search for a server called "lmbsvsql01\prod".
|
|
+
|
|
+I am MCP VB developper, and learning C#... If you need some help to test,
|
|
+just ake me ... ;-)
|
|
+
|
|
+
|
|
+Steps to reproduce the problem:
|
|
+1.
|
|
+2.
|
|
+3.
|
|
+
|
|
+Actual Results:
|
|
+
|
|
+
|
|
+Expected Results:
|
|
+
|
|
+
|
|
+How often does this happen?
|
|
+
|
|
+
|
|
+Additional Information:
|
|
</PRE>
|
|
|
|
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="030402.html">[Mono-bugs] [Bug 75227][Nor] Changed - DataSet.GetChanges() fails
|
|
when dataset includes deleted rows
|
|
</A></li>
|
|
<LI>Next message: <A HREF="030404.html">[Mono-bugs] [Bug 75227][Nor] Changed - DataSet.GetChanges() fails
|
|
when dataset includes deleted rows
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#30403">[ date ]</a>
|
|
<a href="thread.html#30403">[ thread ]</a>
|
|
<a href="subject.html#30403">[ subject ]</a>
|
|
<a href="author.html#30403">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://lists.ximian.com/mailman/listinfo/mono-bugs">More information about the mono-bugs
|
|
mailing list</a><br>
|
|
</body></html>
|