![]() |
VOOZH | about |
This article illustrates using LINQ to access tables within the Sybase via the CData ADO.NET Data Provider for Sybase. To achieve this, we will use LINQ to Entity Framework, which facilitates the generation of connections and can be seamlessly employed with any CData ADO.NET Data Providers to access data through LINQ.
See the help documentation for a guide to setting up an EF 6 project to use the provider.
Enter your data source connection information.
To connect to Sybase, specify the following connection properties:
Optionally, you can also secure your connections with TLS/SSL by setting UseSSL to true.
Sybase supports several methods for authentication including Password and Kerberos.
Set the AuthScheme to Password and set the following connection properties to use Sybase authentication.
To connect with LDAP authentication, configure Sybase server-side to use the LDAP authentication mechanism.
After configuring Sybase for LDAP, you can connect using the same credentials as Password authentication.
To leverage Kerberos authentication, begin by enabling it setting AuthScheme to Kerberos. See the Using Kerberos section in the Help documentation for more information on using Kerberos authentication.
You can find an example connection string below:
Server=MyServer;Port=MyPort;User=SampleUser;Password=SamplePassword;Database=MyDB;Kerberos=true;KerberosKDC=MyKDC;KerberosRealm=MYREALM.COM;KerberosSPN=server-name
Below is a typical connection string:
User=myuser;Password=mypassword;Server=localhost;Database=mydatabase;Charset=iso_1;
Using the entity you created, you can now perform select , update, delete, and insert commands. For example:
SybaseEntities context = new SybaseEntities();
var productsQuery = from products in context.Products
select products;
foreach (var result in productsQuery) {
Console.WriteLine("{0} {1} ", result.Id, result.Id);
}
See "LINQ and Entity Framework" chapter in the help documentation for example queries of the supported LINQ.
Download a free trial of the Sybase Data Provider to get started:
Download NowLearn more:
👁 SAP Sybase IconRapidly create and deploy powerful .NET applications that integrate with Sybase databases.