Define JDBC

Define JDBC.

- The JDBC API defines interfaces and classes for making database connections.
- Using JDBC, you can send SQL, PL/SQL statements to almost any relational database.
- It can access any kind of tabular data especially the data stored in the relational database.

It helps in writing Java applications that manage these three programming activities:

1. Connect to a data source, like a database
2. Send queries and update statements to the database
3. Retrieve and process the results received from the database in answer to your query
Describe JDBC Architecture in brief.
Describe JDBC Architecture in brief. - Java application calls the JDBC library that loads a driver which talks to the database....
Define ResultSet
Define ResultSet - ResultSet provides access to the rows of table. A ResultSet maintains a cursor pointing to its current row of data.......
What are the types of JDBC drivers?
What are the types of JDBC drivers? - Native-API, partly Java driver, also called Type 2..
Post your comment