我已使用以下代码连接到hive数据库。第一部分描述表,第二部分执行选择查询。 Select查询运行正常,但不会获取任何行。
import java.sql.SQLException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.DriverManager;
public class HiveJdbcClient {
private static String driverName = "org.apache.hive.jdbc.HiveDriver";
public static void main(String[] args) throws SQLException {
try {
Class.forName(driverName);
} catch (ClassNotFoundException e) {
e.printStackTrace();
System.exit(1);
}
Connection con = DriverManager.getConnection("jdbc:hive2://hostname:10000", "mapr", "mapr");
Statement stmt = con.createStatement();
String tableName1 = "default.newEmployee";
// describe table
String sql = null;
sql = "describe " + tableName1;
System.out.println("Running: " + sql);
ResultSet res = stmt.executeQuery(sql);
while (res.next()) {
System.out.println(res.getString(1) + "\t" + res.getString(2));
}
// select * query
sql = "select name from " + tableName1;
System.out.println("Running: " + sql);
res = stmt.executeQuery(sql);
System.out.println("Complete");
System.out.println("reslut "+res.getBoolean(0));
}
}
当我登录hive并进行选择时,我获得了超过一百万行。 任何人请建议,如果我在这里做错了什么。
答案 0 :(得分:1)
我找到了解决此问题的方法。我没有使用hive-jdbc连接,而是在java中使用了Runtime.exec方法,但它确实有效。
Runtime.exec(“hive”,“ - e”,“Query”);
我仍然没有弄清楚为什么hive-jdbc连接在查询表来获取数据时会出错。为什么像“desc tablename”这样的Metastore操作完全正常。
答案 1 :(得分:0)
花费方式过多时间遇到一个非常类似的问题:您必须获取结果集的行,即使它只是一行:
ResultSet rs = preparedStatement.getResultSet();
while (rs.next()) {
System.out.println(rs.getInt(1));
}