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