a) TYPE_FORWARD_ONLY, CONCUR_READ_ONLY b) TYPE_SCROLL_INSENSITIVE, CONCUR_UPDATABLE c) TYPE_SCROLL_SENSITIVE, CONCUR_READ_ONLY d) TYPE_FORWARD_ONLY, CONCUR_UPDATABLE
(Detailed answers for D & E to be evaluated based on standard JDBC practices and Durga Sir’s notes – focus on proper resource handling, SQL injection prevention, transaction boundaries, and connection pooling concepts.) jdbc by durga sir
import java.sql.*;
Represents the Connection established between the application and the database. CONCUR_READ_ONLY b) TYPE_SCROLL_INSENSITIVE
Adv Java | JDBC Session - 12 ||JDBC API Part - 1 by Durga sir CONCUR_UPDATABLE c) TYPE_SCROLL_SENSITIVE
// Close the connection conn.close(); catch (SQLException e) System.out.println("Error: " + e.getMessage());