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 [EMAIL PROTECTED] 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: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +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: _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
