.NET Data Provider Connection Strings: "ASE .NET Data Provider
MySQLDirect .NET Data Provider
ODBC .NET Data Provider
OLE DB .NET Data Provider
Oracle .NET Data Provider - From Microsoft
Oracle .NET Data Provider - From Oracle
OraDirect .NET Data Provider
PostgreSQLDirect .NET Data Provider
SQL Server .NET Data Provider
Adaptive Server Enterprise (ASE)
.NET Data Provider
Sybase.Data.AseClient
The ASE .NET Data Provider is an add-on component to the .NET 1.1 Framework that allows you to access a Sybase Adaptive Server Enterprise (ASE) database.
Using C#
using Sybase.Data.AseClient;
...
AseConnection oAseConn = new AseConnection();
oAseConn.ConnectionString = 'Data Source=(local);' +
'Initial Catalog=myDatabaseName;' +
'User ID=myUsername;' +
'Password=myPassword'
oAseConn.Open();
Using VB.NET
Imports System.Data.AseClient
...
Dim oAseConn As AseConnection = New AseConnection()
oAseConn.ConnectionString = 'Data Source=(local);' & _
'Initial Catalog=myDatabaseName;' & _
'User ID=myUsername;' & _
'Password=myPassword'
oAseConn.Open()
For more information, see: ASE User's Guide
MySQLDirect .NET Data Provider
CoreLab.MySql
The MySQLDirect .NET Data Provider is an add-on component to the
.NET Framework that allows you to access the MySQL database using
native MySQL network protocol or MySQL client, without going through
OLE DB or ODB"