cOLLECTIONS

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