import java.sql.*;
import java.util.Properties;
public class VerySimpleVerticaJDBCExample {
public static void main(String[] args) {
/* JDBC 3.0 以前的版本需要添加下边这段代码 */
/*
* try { Class.forName("com.vertica.jdbc.Driver"); } catch
* (ClassNotFoundException e) { // Could not find the driver class.
* Likely an issue // with finding the .jar file.
* System.err.println("Could not find the JDBC driver class.");
* e.printStackTrace(); return; // Bail out. We cannot do anything
* further. }
*/
Properties myProp = new Properties();
myProp.put("user", "dbadmin");
myProp.put("password", "vertica");
myProp.put("loginTimeout", "35");
myProp.put("binaryBatchInsert", "true");
Connection conn;
try {
conn = DriverManager.getConnection(
"jdbc:vertica://docd04.verticacorp.com:5433/dbname", myProp);
用JDBC连接Vertica数据库的例子源代码
最新推荐文章于 2023-11-29 15:27:43 发布
这是一个使用Java JDBC连接Vertica数据库的简单示例。首先加载Vertica JDBC驱动,然后设置用户和密码属性,尝试建立连接。如果遇到网络错误或授权问题,程序将打印错误信息并退出。


6291

被折叠的 条评论
为什么被折叠?



