Solved

Which of the Following Statements Related to JPA Is False

Question 12

Multiple Choice

Which of the following statements related to JPA is false?


A) The Java Persistence API (JPA) maps Java classes to relational database tables and objects of those classes to rows in the tables. This is known as object-relational mapping.
B) You can use the NetBeans IDE's object-relational mapping tools to select a database and autogenerate classes that use JPA to interact with that database. Your programs can then use those classes to query the database, insert new records, update existing records and delete records.
C) Unlike JDBC, you will have to create mappings between your Java code and database tables, and you'll be able to perform complex database manipulations directly in Java.
D) JPA can be used with any database management system that supports JDBC.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions