使用JDBI将表名绑定到SQL查询

时间:2016-01-07 19:11:08

标签: mysql jdbi

我正在使用JDBI发出一个简单的mysql select查询。因为如果我尝试绑定表名,我会得到错误的SQL语法错误。

代码段:

@SqlQuery("select * from <table> where rowid=:rowid")
@SingleValueResult
@Mapper(ContentRecordMapper.class)
public abstract Optional<Document> getRecord(@Define("table") String table, @Bind("rowid") String rowid);

如果我执行此操作,我正在

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<table> where rowid='row1'' at line 1 [statement:"select * from <table> where rowid=:rowid", located:"select * from <table> where rowid=:rowid", rewritten:"/* ContentDAO.getRecord */ select * from <table> where rowid=?", arguments:{ positional:{}, named:{rowid:'row1'}, finder:[]}]

如果我对表名进行硬编码,我会得到正确的结果。请帮助。 感谢

1 个答案:

答案 0 :(得分:2)

您应该使用@ UseStringTemplate3StatementLocator进行注释。已经讨论过here