[Mono-bugs] [Bug 70930][Nor] Changed - SybaseClient: Unable to connect to Sybase 12.5.1

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 4 Jan 2005 01:46:13 -0500 (EST)


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 sebastien.robitaille@croesus.com.

http://bugzilla.ximian.com/show_bug.cgi?id=70930

--- shadow/70930	2005-01-04 01:24:11.000000000 -0500
+++ shadow/70930.tmp.19403	2005-01-04 01:46:13.000000000 -0500
@@ -80,6 +80,16 @@
 I can confirm that this happens to me too when loading SybaseClient
 dynamically on Win XP Pro. It works fine built with SybaseClient
 referenced.  However, the strange thing, like above, if I have "packet
 size=512" in the connection string after loading dynamically, I am
 able to connect.
 I can confirm this sqlsharpgtk.
+
+------- Additional Comments From sebastien.robitaille@croesus.com  2005-01-04 01:46 -------
+Actualy, the connection does not have to be loaded dynamically.
+Using the default constructor and setting the connection string as a 
+second step will also show the problem:
+
+SybaseConnection myConnection = new SybaseConnection();
+myConnection.ConnectionString = myConnectionString;
+myConnection.Open();
+