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

· 5 min read
Deon Slabbert

Welcome to Becoming a Programmer!

The goal of this website is fourfold:

  • To answer the question, "How do I become a programmer?"
  • by helping you transition from Zero to Software Developer
  • and eventually become a Fullstack Software Developer specifically
  • with the focus on Line-of-Business systems.