Copyright © 2001 Qusay H. Mahmoud
Phases
lA Java application built on top of the JDBC API goes through three different phases:
–Opening a connection to a database
–Creating a statement object through which it passes SQL statements to the underlying DBMS
–Retrieve the results
lThe anatomy of a JDBC-based application is discussed later
lWe’ll see examples later….