adspace


Briefly tell about the jdbc architecture.

Answer Posted / Akanksha Lohia

The JDBC architecture consists of four main components: JDBC API, JDBC Driver (JDBC-ODBC bridge, native drivers, and network protocol drivers), Database URL (jdbc:subprotocol://host:port/database_name), and SQL statements. The JDBC API provides a set of interfaces for database access, the JDBC Driver acts as a translator between the Java application and the underlying database management system, the Database URL specifies the location of the database, and SQL statements are used to communicate with the database.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we return resultset in java?

990