java - What is the difference between ACCOUNT and ACCOUNTSTRING in Teradata connection? -


i connecting teradata using jdbc. have been provided account = 'xxx' string supposed use privilege connection . however, not find documentation on account connection parameter. teradata have account connection parameter @ ? find accountstring . not same ?

i have been told connection string should : dsn=xxx;uid=xxx;pwd=xxx;account=xxx

what account connection string parameter @ ?

here connection

string constr = "jdbc:teradata://xxx/logmech=ldap," + "tmode=" + tmode + ","                 + "charset=" + charset + "," + "logdata='authcid=" + user                 + " password=" + pass + "',account=$bdlj$kflsmflmlgsg"; class.forname("com.teradata.jdbc.teradriver");  connection contest = drivermanager.getconnection(constr);  

the connection fails. spesifying account parameter correctly ? works without account . .


Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -