Java中Hypertable中的Select语句
我在java程序中使用hypertable(我知道它应该在C++中使用)。
我想在java程序中使用SELECT sql查询。但我无法选择。结果为 null
。
请教我们是否可以在Java程序中使用SQL超表语句。如果是,请给出一些示例代码。
谢谢。
I am using hypertable in java program (I know it should be used in C++).
I want to use SELECT sql query in java program. But I am unable to select. The Result is coming as null
.
Please advice whether we can use SQL hypertable statement in Java program. If yes, please give some sample code.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下载超表源代码并解压它们,然后查看此目录:
它有一个名为
BasicClientTest.java
的文件,该文件执行select
查询。再见
克里斯托夫
download the hypertable sources and unpack them, then look into this directory:
it has a file called
BasicClientTest.java
which does aselect
query.bye
Christoph