Programming
Programming Tips for JDBC
Programming Tips for JDBC a. Use DataSource whenever Possible If you have a choice, you always should use javax.sql.DataSource to get a JDBC connection. Data sources, which were introduced with JDBC 2.0, make the job of configuring a database connection and connecting to a database nearly fool proof. Consider the following Read more…