ASE ADO.NET Data Provider

This .NET Framework Class Library is 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.
Download link missing
The ASE ADO.NET Data Provider installation package download link is missing. Please provide info and contribute to the community by email to
Connection Strings
The ASE ADO.NET Data Provider class library can be used to connect to the following data sources:

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

Popular

Copyright © 2013 30c.org   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.