skip to main content
Using the driver : Connecting from an application : Connecting using the DriverManager
  

Try DataDirect Drivers Now

Connecting using the DriverManager

One way to connect to a Hive 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:hive://MyServer:10000;User=test;Password=secret;DatabaseName=MyDB");
* Passing the connection URL
* Testing the connection