How to update a record using JDBC PreparedStatement

  • 29 April 2016
  • ADM

How to update a record using JDBC PreparedStatement to avoid SQL injection.


How to select records using JDBC PreparedStatement

  • 05 April 2016
  • ADM

How to select records from MySQL database using JDBC PreparedStatement to avoid SQL injection.


How to insert a record using JDBC PreparedStatement

  • 05 April 2016
  • ADM

How to insert a new record using JDBC PreparedStatement in Java to avoid SQL injection. Example with auto-increment table.


JDBC Statement vs PreparedStatement

  • 05 April 2016
  • ADM

JDBC Statement vs PreparedStatement with example. Comparison between around SQL Injection using SELECT query.


How to create Builder design pattern in Java

  • 03 November 2016
  • ADM

How to create Builder Design Pattern in Java using simple example and comparison with classic instantiation.