Java Database Connectivity Crossword

12345678
Across
  1. 2. The class whose forname() method can be called to register a JDBC Driver in your Java program
  2. 3. The method which is often called in the finally block to delete database connection object after used.
  3. 5. A common Exception which is handled in JDBC programs to deal with Database access exceptions.
  4. 7. Method called on the database Connection object to make all the changes made in the current transaction permanent.
  5. 8. The software component that enables java application to interact with any database.
Down
  1. 1. JDBC Interface used to create precompiled database queries and faster query execution.
  2. 2. The JDBC Interface used for creating a new database connection.
  3. 4. Method called on the database Connection object to undo all changes made in the current transaction.
  4. 5. Java sub package imported to your program which contains all JDBC Interfaces, classes and methods.
  5. 6. A JDBC Driver which is of type 4 and communicates directly with the Vendor's database.