JVM Languages
jqa1201.txt
Associated article: How Can I Speed Up My JDBC-Based Programs?
Tags: JVM Languages
Published source code accompanying the article by Tim Kientzle in which he focuses on JDBC as he examines a number of techniques for optimizing the performance of database-centric applications. Also see JQA1201.ZIP.
Java Q&A
by Tim Kientzle
Example 1:
java.sql.Connection db = null;
java.sql.Statement stmt = null;
java.sql.ResultSet rs = null;
try {
// Obtain database connection
// prepare statement
// execute statement
// Retrieve results
} catch(java.sql.SQLException e) {
System.err....


