将JDBC预处理语句与Apache Pheonix的where子句一起使用

时间:2016-12-14 16:57:31

标签: hadoop jdbc hbase prepared-statement

我是HBase的新手并使用Pheonix查询HBase。我正在使用下面的查询条件。运行此查询时,它显示未定义的列。请查看thsi并帮助我解决方案我正在使用表

中的确切列名称
PreparedStatement     ps = connection.prepareStatement("select * from event_time where name = ? and process = ? and location = ? limit 10");


                ps.setString(1,"myfirstServer");
                ps.setString(2,"1stEvent");
                ps.setString(3,"Chennai");

我收到错误未定义列"进程" 。当我只传递单列名称时,它正在工作("从event_time中选择*,其中name =?limit 10")

0 个答案:

没有答案