Archives of the TeradataForum
Message Posted: Wed, 03 Jan 2007 @ 17:40:55 GMT
Subj: | | Re: Connect to Teradata from VB.Net |
|
From: | | Anomy Anom |
<-- Anonymously Posted: Wednesday, January 03, 2007 11:29 -->
If you use the Teradata .NET provider,
TDcn = new Teradata.Client.Provider.TdConnection("Data Source=TDPID;User
Id=myuser;Password=mypw;");
See online help installed with the provider for more details.
If you use the OLEDB provider,
TDcn = new OleDb.OleDbConnection("Provider=TDOLEDB;Data
Source=TDPID;User ID=myuser;Password=mypw;");
See the OLE DB Provider manuals for details.
|