Developers community number 1 connection string reference

ASE ADO.NET Data Provider

This is a .NET Framework Class Library provided by Sybase.
The class library is contained in the file Sybase.Data.AseClient.dll.
Coding
Add a reference to the assembly Sybase.Data.AseClient and include the Sybase.Data.AseClient namespace. Instantiate a new AseConnection connection object. Set the connection string and open the connection.


   VB.NET code sample
Imports Sybase.Data.AseClient
Dim myConnection As AseConnection = New AseConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()


   C# code sample
using Sybase.Data.AseClient;
AseConnection myConnection = new AseConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();


Description
sybdrvado11.dll (utility code) and sybdrvssl.dll (SSL support) is also used.
Connection Strings
The ASE ADO.NET Data Provider class library can be used to connect to the following data sources.

To see the available connection options, navigate to the connection strings reference by clicking the data source link.
Additional info or comments on this class library? Want to submit content?

Send an e-mail to
Copyright © 2010 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.