InterviewSolution
Saved Bookmarks
| 1. |
What is the design pattern followed by JDBC? |
|
Answer» JDBC architecture decouples an abstraction from its implementation. Hence JDBC follows a bridge design pattern. The JDBC API provides the abstraction and the JDBC drivers provide the implementation. New drivers can be plugged-in to the JDBC API without changing the client code. |
|