Multiple choice technology platforms and products

Match the EJB functions given below with the functionality equivalent in SQL A.) ejbStore() 1.) INSERT B.) ejbLoad() 2.) UPDATE C.) ejbCreate() 3.) SELECT

  1. A->1, B->2, C->3

  2. A->3, B->2, C->1

  3. A->2, B->1, C->3

  4. A->2, B->3, C->1

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

ejbStore() synchronizes entity bean state to database (UPDATE), ejbLoad() refreshes bean state from database (SELECT), and ejbCreate() inserts new data (INSERT). The mapping is ejbStore->UPDATE, ejbLoad->SELECT, ejbCreate->INSERT.