I am new to this group as well as to Java.. I am looking at downloading nzjdbc.jar so that i will be able to connect to Netezza database with my java code and get some data for validations in my selenium automation script, may i know where can i download it.? I see some jar file here http://www.java2s.com/Code/Jar/n/Downloadnetezza350jar.htm not sure if that will help me.. Can some one who is working in java / Netezza background help me with a sample code to connect to Netezza database and guide me in downloading the exact jar file that i need to download.
Thanks
Netezza JDBC Driver and URL connection information such as driver class, URL format, etc. As a follow up, I tried connect to a MySQL DB using the default MySQL option and it worked fine. Trying to use the Generic JDBC with Netezza isn't working.
1 Answer
Class.forName(org.netezza.Driver);conn = DriverManager.getConnection(dbUrl, userName, password);
Plus you need the netezza driver (netezza-3.5.0.jar) in your class path or maven repo.
Not the answer you're looking for? Browse other questions tagged netezza or ask your own question.
I have configured a netezza db in spring . I have added the dependent nzjdbc.jar in the classpath
Spring config:
1 Answer
Put the nzjdbc.jar
in your local maven repository
(execute this in the directory where the netezza.jar
is located
Ibm Jdbc Driver Download
Netezza Odbc Driver Download
And then use it like a normal dependency:
Netezza Odbc Driver Windows 10
@See Guide to installing 3rd party JARs
RalphRalph