Initializes a new instance of
TdConnection given a connection string.
The following example creates an instance of the TdConnection class, sets the
TdConnection.ConnectionString property and opens a connection to the Teradata database.
public TdConnection CreateConnection()
{
TdConnection cn =
new TdConnection(“Data Source=Teradata1;User Id=ab;Password=ab;”);
cn.Open();
return cn;
}
Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2