The connection string shown above is for the "Microsoft .NET Data Provider for OLE DB". In other words, this ADO.NET Data Provider is a Bridge; it utilizes a native OLE DB Provider under the covers.
The .NET Data Provider for Teradata is an ADO.NET Data Provider by itself. It does not use an OLE DB Provider under the covers.
The connection string for the .NET Data Provider for Teradata is something like:
Data Source=SystemName; User Id=Foo; Password= Bar;
I recommend that you use the TdConnectionStringBuilder class to build the connection string. See online documentation for addition information:
http://developer.teradata.com/doc/connectivity/tdnetdp/14.10/webhelp/webframe.html
http://developer.teradata.com/doc/connectivity/tdnetdp/14.10/webhelp/DevelopingNetDataProviderforTeradataApplications.html
http://developer.teradata.com/doc/connectivity/tdnetdp/14.10/webhelp/Teradata.Client.Provider~Teradata.Client.Provider.TdConnectionStringBuilder.html
↧