Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How does the Java Database Connectivity (JDBC) work?

connectivity database Java JDBC
0
Posted

How does the Java Database Connectivity (JDBC) work?

0

The JDBC is used whenever a Java application should communicate with a relational database for which a JDBC driver exists.

0

Daniel: JDBC maps a permanent storage solution’s operations under a single API (i.e. the JDBC API). Since each permanent storage solution will have a proprietary way in which to create, read, update and delete data, JDBC maps each of these proprietary calls to a single JDBC API call which performs uniformly irrespective of the permanent storage manufacturer.You can think of it in terms of crossing a bridge, with one end representing the Java application and another the permanent storage solution. To cross the first half of the bridge, you must learn the JDBC API and incorporate it with a Java application. The cross the second half of the bridge, you must rely on a JDBC driver designed for a particular permanent storage solution. The benefit is that once you know the JDBC API, you’re always half-way through communicating with any permanent storage solution that supports JDBC.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123