Connectionstring of netezza with .net framework VS 2013

284 views Asked by At

I saw the connectionstring of netezza ODBC with .NET framework and its make me confude example:

Driver={any odbc driver's name};OdbcKey1=someValue;OdbcKey2=someValue;

Please help me explain what's any odbc driver's name what's somevalue in OdbcKey1 and OdbcKey2

The detail of server information is following

Data Source=10.209.46.210:5480;User ID=kbanke2e;Password=1234;Initial Catalog=EDW
1

There are 1 answers

0
Niederee On

When connecting to Netezza in .net use this instead

"Driver=NetezzaSQL; Server=10.209.46.210; Port=5480; Database=EDW; Persist Security Info=true; UID=kbanke2e; PWD=1234"