Skip to main content

One post tagged with "JDBC"

View All Tags

JdbcTemplate

· 2 min read
Deon Slabbert

Please note, the content of this post has been copied and modified from the Spring website.

SELECT

public int test() {
var sql = "select count(*) from product";
return this.jdbcTemplate.queryForObject(sql, Integer.class);
}