50.6k views
2 votes
Describe ONE of the following technologies and explain how they support the task of interfacing an 00 program with a relational database.

JDBC: Java Database Connectivity.
ORM: Object Relational Mapping.

(Advanced Database Systems Course)

User Michel Tol
by
7.1k points

1 Answer

2 votes

Answer:

JDBC (Java Database Connectivity) is a Java-based application programming interface (API) that allows Java programs to access and manipulate data stored in relational databases. It provides a set of standard interfaces and classes that can be used to establish a connection to a database, send SQL statements, and process the results.

Using JDBC, a Java program can connect to a database, execute queries and updates, and retrieve the results. This allows the program to interface with the database and exchange data with it in a standard and consistent way. JDBC supports a wide range of database systems, including popular ones like MySQL, Oracle, and Microsoft SQL Server.

Overall, JDBC makes it easy for Java programs to access and manipulate data stored in relational databases, supporting the task of interfacing an 00 program with a relational database.

User Shalin Patel
by
9.2k points