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.


How to create a table using JDBC Statement

  • 24 March 2016
  • ADM

How to create a new table from Java using JDBC Statement in simple steps: connect, get the statement, execute and close.


JDBC Statement vs PreparedStatement

  • 05 April 2016
  • ADM

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


How to connect to MySQL with JDBC driver

  • 20 May 2016
  • ADM

How to connect to MySQL database with MySQL JDBC driver. Get a new connection using DriverManager class.