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