skip to main content
Getting Started : Connecting Using the Driver Manager
  

Try DataDirect Drivers Now

Connecting Using the Driver Manager

One way to connect to an Impala database is through the JDBC DriverManager using the DriverManager.getConnection() method. As the following example shows, this method specifies a string containing a connection URL.
Connection conn = DriverManager.getConnection
("jdbc:datadirect:impala://Server3:21050;
DatabaseName=Test;User=admin;Password=adminpass");
* Passing the Connection URL
* Testing the Connection