Developers community number 1 connection string reference
Loading ad...

Teradata .Net driver

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


VB.NET code sample
Imports Teradata.Client.Provider
Dim myConnection As TdConnection = New TdConnection;();
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()


C# code sample
using Teradata.Client.Provider;
TdConnection myConnection = new TdConnection;();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();


Connection Strings
The Teradata .Net driver 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.
Teradata
Additional info or comments on this class library? Want to submit content?

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