[Mono-bugs] [Bug 75354][Nor] New - MySql problem, ok on 1.1.4,
fails on 1.1.8
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Jun 22 15:12:41 EDT 2005
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 kevin-f at linkprior.com.
http://bugzilla.ximian.com/show_bug.cgi?id=75354
--- shadow/75354 2005-06-22 15:12:41.000000000 -0400
+++ shadow/75354.tmp.22297 2005-06-22 15:12:41.000000000 -0400
@@ -0,0 +1,77 @@
+Bug#: 75354
+Product: Mono: Runtime
+Version: 1.1
+OS:
+OS Details: Windows XP Pro SP2
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: kevin-f at linkprior.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: MySql problem, ok on 1.1.4, fails on 1.1.8
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+Connecting to a local MySql database with Connector/Net 1.0.4 works fine
+on Mono 1.1.4 but fails on 1.1.8.
+
+
+Steps to reproduce the problem:
+1. Install MySql 4.1 on Windows XP
+2. Compile and run the following code on Windows XP
+
+//
+// code starts
+//
+using System;
+using MySql.Data;
+using MySql.Data.MySqlClient;
+
+namespace test
+{
+ class Class1
+ {
+ static void Main(string[] args)
+ {
+
+ MySqlConnection conn;
+ conn = new MySqlConnection();
+
+ conn.ConnectionString = "server=localhost;user
+ID=root;password=test;database=test;pooling=false";
+ conn.Open();
+
+ Console.WriteLine(conn.ServerVersion);
+ Console.ReadLine();
+
+ }
+ }
+}
+
+//
+// code ends
+//
+
+
+
+Actual Results:
+Fails saying "Unable to connect to any of the specified MySQL hosts" (on
+Mono 1.1.8)
+
+Expected Results:
+Writes version of server to console (which it does on Mono 1.1.4 and
+MS .NET runtime)
+
+
+
+How often does this happen?
+
+
+Additional Information:
More information about the mono-bugs
mailing list