How to set up .net teradata connection in c#?

前端 未结 4 2439
天命终不由人
天命终不由人 2021-02-14 12:36

I am trying to connect to Teradata with c#. I am using the sample code from this website

using System;
using System.Collections.Generic;
using System.Text;
usin         


        
4条回答
  •  礼貌的吻别
    2021-02-14 13:28

    Try this. try to see if you get anything in the string 'tt'. Plz change your DBCommand query to whatever relevant.

        public readonly String sUser = "UserName";
        public readonly String sPassword = "Password";
        public readonly String sDataSource = "IP Address"; 
        public readonly String sConnection = "Data Source=" + sDataSource + ";User ID=" + sUser + ";Password=" + sPassword;
    
    
            DbProviderFactory pf = DbProviderFactories.GetFactory("Teradata.Client.Provider");
            DbConnection con = pf.CreateConnection();
            con.ConnectionString = sConnection ;       
            DbCommand cmd= new DbCommand("select top 10 * from tdb.access_method");
            DbCommand Db = (DbCommand)cmd;
            Db.Connection = con;
            DataSet ds = new DataSet();
            con.Open();
            string tt = (string)Db.ExecuteScalar();
    

提交回复
热议问题