这是我使用 jdbcTemplate 的代码
String SQL = "select branch from branchTable where branch_name = '" + branch + "'";
ArrayList<String> branchList = (ArrayList<String>) jdbcTemplateObject.query(SQL, new RowMapper() {
public Object mapRow(ResultSet resultSet, int i) throws SQLException {
return resultSet.getString("city_desc");
}
});
return branchList;
现在我希望能够将preparedstatement与类似的查询一起使用"select branch from branchTable where branch_name = ?"
我怎么能用 jdbcTemplate 做到这一点?我搜索的示例演示了如何将它与更新或插入查询一起使用,但不与选择查询一起使用。
请帮忙。