From Overview of JDBC and its use with Microsoft Access UC Web Applications Certificate -- June 26 97. byNancy McCracken(Sangetta Aggarwal, Udayan Parvate, Tom Pulikal)
The SQL query is created and executed.
Syntax: PreparedStatement pstmt = conn.prepareStatement("select * from datatable where NAME = ?");
ResultSet rs = pstmt.executeQuery();
The data is read from the database and passed back to the applet where it is displayed.
At the end of the session, the connection to the database is closed.