cOLLECTIONS

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