Skip to main content

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);
}

The Goal

· One min read
Deon Slabbert

Welcome to the Becoming a Programmer website.

The goal of this website is to properly answer the quation, "How do I become a programmer?"