Java Prepared Statement syntax to connect hive server for describing table

199 Views Asked by At

trying to establish connection to hive and describe a table.

enter code here
    String queryTable= "dummydb.dummy_table";
    String driverName = "org.apache.hive.jdbc.HiveDriver";
    try {
        Class.forName(driverName);
    } catch (ClassNotFoundException ex) {
        ex.printStackTrace();
    }
    //connect hive server (no issue in that)
    String hiveUrl = PropertyLoader.getInstance("staging").getDruidHive();
    Connection con = DriverManager.getConnection(hiveUrl, "hadoop", "");

    ##Working code is below:
         String sql = "describe formatted dummydb.dummy_table" ;
         PreparedStatement pstmt = con.prepareStatement(sql);
         ResultSet rs1 = pstmt.executeQuery();

    ##But I try to use this which is not working:

        String queryTable="dummydb.dummy_table"
        String sql1 = "describe formatted ?" ;
        PreparedStatement pstmt = con.prepareStatement(sql1);
        pstmt.setString(1, queryTable);
        ResultSet rs1 = pstmt.executeQuery();

Error org.apache.hive.service.cli.HiveSQLException: Error while compiling statement: FAILED: ParseException line 1:19 cannot recognize input near 'formatted' ''dummydb.dummy_table'' '' in describe statement

0

There are 0 best solutions below