如何使用iBATIS在运行时创建查询

时间:2009-10-03 00:52:02

标签: ibatis

如何使用ibatis(Java)在运行时创建查询? 我希望表名是动态的。 例如,我有这个xml文件:

<resultMap id="result" class="Contact">
    <result property="id" column="id"/>
    <result property="firstName" column="firstName"/>
    <result property="lastName" column="lastName"/>
    <result property="email" column="email"/>
</resultMap>

<select id="getById" resultMap="result">
         select * from contact where id=#id#
</select>

这里的id是动态的,因为它作为参数传递。 但是如何让表名动态? 我想从表联系人,contact1,contact2 ....中选择,但我现在将表名称直到运行时。

我知道您可以在运行时使用ibatis 3.0创建查询是否可以使用ibatis 2.3.4进行查询?

2 个答案:

答案 0 :(得分:1)

我发现你可以做到这一点。

    <select id="getRighe"
remapResults="true"
resultMap="resultRighe"
parameterClass="java.util.Map">
select * from
$tablePrefix$_righe
where IDUser = #IDUser#
</select>

Java代码:

param.put("IDUser", IDUser);
param.put("tablePrefix", "NAG");
utente = (Riga)getSqlMapClientTemplate().queryForObject("getRighe", param);

答案 1 :(得分:0)

使用iBatis3创建完整查询(不仅仅是表名):

private void createSelect(String statementId, String sql, Class<?> resultType) {
    Configuration ibatisConfig = session.getConfiguration();
    SqlSource sqlSource = new SqlSourceBuilder(ibatisConfig).parse(sql, Map.class);
    Builder statement = new MappedStatement.Builder(ibatisConfig, statementId, sqlSource, SqlCommandType.SELECT);
    List<ResultMapping> resultMapList = new ArrayList<ResultMapping>();
    ResultMap resultMap = new ResultMap.Builder(ibatisConfig, statementId, resultType, resultMapList, true).build();
    ibatisConfig.addResultMap(resultMap);
    List<ResultMap> resultMaps = new ArrayList<ResultMap>();
    resultMaps.add(resultMap);
    statement.resultMaps(resultMaps);
    ibatisConfig.addMappedStatement(statement.build());
}

执行它:

private List<Object> executeSelect(String sqliteStatementId, Map<String, Object> params) {
        return session.selectList(sqliteStatementId, params);
}