Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

sybase conenction string and asc dll's

22 views
Skip to first unread message

Parvez

unread,
Jan 17, 2012, 7:59:49 AM1/17/12
to
You can download the sybase asc dll at
http://projects.rsdn.ru/RFD/browser/trunk/Redist/Sybase?rev=695&order=name

The connection String that worked with me was
String conString = @"Data Source=173.999.180.190:3408;Initial
Catalog=DB;User ID=ffffffffffff;Password=ggggggggggg;";


try
{

AseConnection con = new AseConnection();
con.ConnectionString = conString;
con.Open();
con.Close();

}
catch (Exception ex)
{

MessageBox.Show(ex.Message);
}

// www.abobjects.com
// Parvez Ahmad Hakim
0 new messages