1.1 JDBC API Connection

1.1.1 Connection: Connection object to the database

1.1.1.1 Function 1: Create an object for executing SQL statements



Execute SQL statement object:

  • Statement: Executes SQL
  • CallableStatement: Executes stored procedures in the database
  • PreparedStatement: Execute SQL. Prepare SQL. Address SQL injection vulnerabilities.

1.1.1.2 Function 2: Manage services