Describe what the best JDBC driver type is and why?
What are the disadvantages of using JDBC driver types?
•Connecting directly to a database is not the best way for web applications
–Better: connect to a data source that provides support for connection pooling
•Connection pool
–Responsible for creation and management of DB connections
–Enables reuse
–Avoids costly opening and closing of connections
–Managed transparently by data source
What is JNDI?
• Stands for: Java Naming and Directory Interface
The complete picture?
What is the diagram for O/R mapping via DAO Pattern?