如何使用EOD SQL创建动态查询?

时间:2009-10-13 14:19:02

标签: sql where-clause dynamic-sql

这应该相当简单,但我似乎找不到一个例子。 我想创建一个如下所示的查询:

SELECT column_name FROM table_name WHERE column_name IN (value1,value2,...)

作为一个选项,我可以在查询结尾添加OR子句。

到目前为止,我写的代码一直在吹嘘Nullpointer:

@Select(sql = "select storename from broadcastrecipient where storecity in (?{1})")
public List<String> getStoresForCities(List<String> theCities) throws SQLException;

提前致谢。 // Abean

注意:我忘了添加一些关于我的环境的信息:PostGres 8.3,Java 1.6和EOD SQL 0.9。


谢谢杰森。 对于那些想知道的人,查询看起来像这样:

    @Select(sql = "select distinct(storename) from broadcastrecipient where storecity = any (?{1})", disconnected=true)
    public List<String> getStoresForCities(String[] theCities) throws SQLException;

我还需要实现一个TypeMapper类来将SQL数组映射到Java数组。

1 个答案:

答案 0 :(得分:1)

我建议看一下EoD SQL 2.0:https://eodsql.dev.java.net/ 然后看看完全针对这种情况设计的QueryTool.select()方法。

EoD SQL 0.9没有处理内置此类查询的功能。

一个非常难看的黑客是创建一个临时表,并用你的数组数据填充它。然后将查询运行为:

@Select("SELECT storename FROM broadcastrecipient WHERE storecity IN (SELECT * FROM tmp_cities)")
public List<String> getStoresForCurrentCities();