@FunctionalInterface public interface QueryFilter
"FROM IDP WHERE NAME=?";
this.jdbcTemplate.fetchSingleRecord(GET_ALL_IDP_SQL, (resultSet, rowNumber) -> {
...
return ..;
},(preparedStatement) -> {
preparedStatement.setString(1, var1);
});
| Modifier and Type | Method and Description |
|---|---|
void |
filter(PreparedStatement preparedStatement)
Performs the variable binding.
|
void filter(PreparedStatement preparedStatement) throws SQLException
preparedStatement - SQLExceptionCopyright © 2020 WSO2. All rights reserved.