DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Because the DevOps movement has redefined engineering responsibilities, SREs now have to become stewards of observability strategy.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

  1. DZone
  2. Refcards
  3. JDBC Best Practices
refcard cover
Refcard #101

JDBC Best Practices

Use JDBC Like a Pro

Learn advanced JDBC, a data access standard for Java, on codeless configuration, SSO, debugging, and logging.

Download Refcard
Free PDF for Easy Reference
refcard cover

Written By

author avatar Jesse Davis
Software Architect, DataDirect Technologies
Table of Contents
► A Brief History ► JDBC Basics ► Driver Types and Architecture ► Performance Considerations ► JDBC Data Types ► What's in a Driver? ► Advanced JDBC ► SQL Quick Reference ► JDBC With Hibernate
Section 1

A Brief History

By Jesse Davis

Sun Microsystems created JDBC in the 90s to be the standard for data access on the Java Platform. JDBC has evolved since that time from a thin API on top of an ODBC driver to a fully featured data access standard whose capabilities have now surpassed its aging brother, ODBC. In recent applications, JDBC connects persistence layers (such as Hibernate or JPA) to relational data sources; but the JDBC API with its accompanying drivers are always the final piece connecting Java apps to their data! For more in depth (and entertaining) history, watch this movie on the history of Java and JDBC:

http://www.youtube.com/watch?v=WAy9mgEYb6o

Section 2

JDBC Basics

Connecting to a Server

Getting a basic Connection object from the database is the first operation to get a handle on. The code snippet below gets a connection to a SQL Server database. Note that the Class.forName line is unnecessary if you are using a JDBC 4.0 driver with Java SE 6 or above.

​x
1
​
2
String url = “jdbc:datadirect:sqlserver://nc-cqserver:1433;databaseName=testDB;user=test;password=test”;
3
try {
4
  Class.forName(“com.ddtek.jdbc.sqlserver.SQLServerDriver”);
5
  Connection con = DriverManager.getConnection(url);
6
}
7
catch (Exception except) {
8
    SQLException ex = new SQLException(
9
“Error Establishing Connection: “ +
10
except.getMessage());
11
throw ex;
12
}
13
​

It is good to get metaData from the Connection object to see what driver and server version you are using. This comes in handy when its time to debug. Printing to system out or logging to a file is preferable:

9
1
​
2
DatabaseMetaData dbmd = con.getMetaData();
3
System.out.println( “\nConnected with “ +
4
dbmd.getDriverName() + “ “ + dbmd.getDriverVersion()
5
+ “{ “ + dbmd.getDriverMajorVersion() + “,” +
6
dbmd.getDriverMinorVersion() +” }” + “ to “ +
7
dbmd.getDatabaseProductName() + “ “ +
8
dbmd.getDatabaseProductVersion() + “\n”);
9
​

Retrieving Data

A straightforward approach to retrieving data from a database is to simply select the data using a Statement object and iterate through the ResultSet object:

11
1
​
2
Statement stmt = con.createStatement();
3
ResultSet results = stmt.executeQuery(“Select * from foo”);
4
String product;
5
int days = 0;
6
while (results.next()){
7
product = results.getString(1);
8
 days = results.getInt(2);
9
 System.out.println(product + “\t” + days);
10
}
11
​

Hot Tip

The JDBC specification allows for fetching all data types using getString or getObject; however, it is a best practice to use the correct getXXX method as demonstrated in the code sample above to avoid unnecessary data conversions.

Executing a PreparedStatement

Use a PreparedStatement any time you have optional parameters to specify to the SQL Statement, or values that do not convert easily to strings, for example BLOBs. It also helps prevent SQL injection attacks when working with string values.

7
1
​
2
PreparedStatement pstmt = con.prepareStatement(“INSERT into table2 (ID, lastName, firstName) VALUES (?,?,?)”);
3
pstmt.setInt(1, 87);
4
pstmt.setString(2, “Picard”);
5
pstmt.setString(3, “Jean-Luc”);
6
rowsInserted += pstmt.executeUpdate();
7
​

Calling a Stored Procedure via CallableStatement

Use a CallableStatement any time you wish to execute a stored procedure on the server:

7
1
​
2
CallableStatement cstmt = con.prepareCall(“{CALL STPROC1 (?)}”);
3
cstmt.setString(1, “foo”);
4
ResultSet rs = cstmt.executeQuery();
5
rs.next();
6
int value = rs.getInt(1);
7
​

Hot Tip

CallableStatements can return resultSets, even when inserting data on the server. If the application doesn’t know if results should be returned, check for results by issuing a call to getMoreResults() after execution.
Section 3

Driver Types and Architecture

TYPE 1: The JDBC-ODBC Bridge

The JDBC-ODBC Bridge was the architecture that the first JDBC drivers adopted. This architecture requires an implementation of the JDBC API that then translates the incoming JDBC calls to the appropriate ODBC calls using the JNI (Java Native Interface). The requests are then sent to the underlying ODBC driver (which at the time was just a shell over the database native client libraries). The bridge implementation shipped with the JDK so you only needed the ODBC drivers and native DB client libraries to get started. Although this was a klunky and headache prone approach, it worked.

JDBC-ODBC Bridge

TYPE 2: Client Based

The next generation of JDBC Drivers was the ever popular Type 2 driver architecture. This architecture eliminated the need for the ODBC driver and instead directly called the native client libraries shipped by the database vendors. This was quickly adopted by the DB vendors as it was quick and inexpensive to implement since they could reuse the existing C/C++ based native libraries. This choice still left Java developers worrying about version and platform compatibility issues (i.e. client version 6 is not supported on HP-Itanium processors).

ODBC Architecture

Hot Tip

Some vendors still do their new development in their native clients first. So, don’t assume that if their website states that the JDBC driver supports Kerberos that they mean their Type 4 driver – they may mean Type 2!

TYPE 3: Two Tier Architecture

Type 3 drivers sought to be a 100% Java solution but never really gained much traction. Type 3 drivers had a Java client component and a Java server component, where the latter actually talked to the database. Although this was technically a full Java solution, the database vendors did not like this approach as it was costly – they would have to rewrite their native client libraries which were all C/C++. In addition, this didn’t increase the architectural efficiency as we are really still a 3 tier architecture so it is easy to see why this was never a popular choice.

Two Tier Architecture

TYPE 4: Wire Protocol Drivers

The most popular JDBC driver architecture to date is Type 4. This architecture encapsulates the entirety of the JDBC API implementation along with all the logic for communicating directly with the database in a single driver. This allows for easy deployment and streamlines the development process by having a single tier and a small driver all in a 100% java package.

Driver Architecture

Hot Tip

Type 4 drivers have been the traditional favorite of Java application developers since its inception due to the clean design and ease of use; drop in the driver jar and you’re up and running!

TYPE 5: New!

While not yet officially sanctioned by the JDBC Expert Group, there is quite a bit of discussion surrounding the new Type 5 driver proposal in the JDBC community. Getting down to the real functional differences, we see this list as the requirements for Type 5 Drivers as follows:

Codeless Configuration The ability to modify options, check statistics and interact with the driver while it is running. Typically through a standard JMX MBean.
Performance Architecture Drivers specifically designed for multi-core, 64 bit, and virtualized environments.
Clean Spec Implementation Strict adherence to the JDBC standard, solving problems within the specification instead of using proprietary methods that promote vendor lock-in.
Advanced Functionality Type 5 drivers unlock code that has been trapped in the vendor native client libraries and bring that into the Java community. Features include but are not limited to: Bulk Load, Client side High Availability, Kerberos, and others.
Section 4

Performance Considerations

Pooling (Object Re-use)

Hot Tip

Pooling objects results in significant performance savings. In JDBC, pooling Connection and Statement objects is the difference between a streamlined app and one that will consume all your memory. Make use of these pooling suggestions for all your JDBC applications!

Connection Pooling – Enabling Connection pooling allows the pool manager to keep connections in a ‘pool’ after they are closed. The next time a connection is needed, if the connection options requested match one in the pool then that connection is returned instead of incurring the overhead of establishing another actual socket connection to the server

Statement Pooling – Setting the MaxPooledStatements connection option enables statement pooling. Enabling statement pooling allows the driver to re-use PreparedStatement objects. When PreparedStatements are closed they are returned to the pool instead of being freed and the next PreparedStatement with the same SQL statement is retrieved from the pool rather than being instantiated and prepared against the server.

Hot Tip

Don’t use PreparedStatements by default! If your SQL statement doesn’t contain parameters use the Statement object instead – this avoids a call to internal and wire level prepare() methods and increases performance!

MetaData Performance

  • Specify as many ar guments to DatabaseMetaData methods as possible. This avoids unnecessary scans on the database. For example, don’t call getTables like this:
3
1
​
2
ResultSet rs = dbmd.getTables(null,null,null,null);
3
​

Specifying at least the schema will avoid returning information on all tables for every schema when the request is sent to the server:

3
1
​
2
ResultSet rs = dbmd.getTables(null,”test”,null,null);
3
​
  • Most JDBC drivers populate the ResultSetMetaData object at fetch time because the needed data is returned in the server responses to the fetch request. Some underutilized pieces of ResultSetMetaData include:
9
1
​
2
ResultSetMetaData.getColumnCount()
3
ResultSetMetaData.getColumnName()
4
ResultSetMetaData.getColumnType()
5
ResultSetMetaData.getColumnTypeName()
6
ResultSetMetaData.getColumnDisplaySize()
7
ResultSetMetaData.getPrecision()
8
ResultSetMetaData.getScale()
9
​

Hot Tip

Instead of using getColumns to get data about a table, consider issuing a dummy query and using the returned ResultSetMetaData which avoids querying the system tables!

Commit Mode

When writing a JDBC application, make sure you consider how often you are committing transactions. Every commit causes the driver to send packet requests over the socket. Additionally, the database performs the actual commit which usually entails disk I/O on the server. Consider removing autocommit mode for your application and using manual commit instead to better control commit logic:

3
1
​
2
Connection.setAutoCommit(false);
3
​

Hot Tip

Virtualization and Scalability are key factors to consider when choosing a JDBC driver. During the Performance Testing phase of your development cycle, ensure that your JDBC driver is using the least amount of CPU and Memory possible. You can get memory and CPU performance numbers from your driver vendor to see how the drivers will scale when deployed in a Cloud or other virtualized environment.

Network Traffic Reduction

Reduce network traffic by following these guidelines.

Technique Benefit
Use addBatch() instead of using PreparedStatements to insert. Sends multiple insert requests in a single network packet
Eliminate unused column data from your SQL statements Removing long data and LOBs from your queries can save megabytes of wire transfer!
Ensure that your database is set to the maximum packet size and that the driver matches that packet size For fetching larger result sets, this reduces the number of total packets sent/received between the driver and server
Section 5

JDBC Data Types

Below is a list of common JDBC types and their default mapping to Java types. For a complete list of data types, conversion rules, and mapping tables, see the JDBC conversion tables in the JDBC Specification or the Java SE API documentation.

JDBC Types Java Type
CHAR, VARCHAR,LONGVARCHAR java.lang.String
CLOB java.sql.Clob
NUMERIC, DECIMAL java.math.BigDecimal
BIT, BOOLEAN Boolean
BINARY, VARBINARY,LONGVARBINARY byte[]
BLOB java.sql.Blob
DATE java.sql.Date
TIME java.sql.Time
TIMESTAMP java.sql.Timestamp
TINYINT byte
SMALLINT short
INTEGER int
BIGINT long
REAL float
FLOAT, DOUBLE double
Section 6

What's in a Driver?

To illustrate what a JDBC driver does under the covers, take a look at this ‘anatomy of a JDBC driver’ diagram.

Diagram1

Section 7

Advanced JDBC

Hot Tip

These advanced features are complex and meant as an overview. For all the bells and whistles for these advanced options, check your JDBC driver documentation!

Debugging and Logging

Well-written JDBC drivers offer ways to log the JDBC calls going through the driver for debugging purposes. As an example, to enable logging with some JDBC drivers, you simply set a connection option to turn on this spying capability:

8
1
​
2
Class.forName(“com.ddtek.jdbc.sqlserver.SQLServerDriver”);
3
​
4
Connection conn = DriverManager.getConnection
5
(“jdbc:datadirect:sqlserver://Server1:1433;User=TEST;Password=secret;
6
SpyAttributes=(log=(file)C:\\temp\\spy.log;linelimit=80;logTName=yes;t
7
imestamp=yes)”);
8
​

Codeless Configuration (Hibernate and JPA)

Codeless Configuration is the ability to change driver behavior without having to change application code. Using a driver under something like Hibernate or JPA means that the user cannot use proprietary extensions to the JDBC objects and should instead control and change driver behavior through connection options.

Additionally, codeless configuration is the ability to monitor and change JDBC driver behavior while the driver is in use. For example, using a tool like JConsole to connect to a driver exported MBean and check the PreparedStatement pool stats as well as importing/exporting new statements on the fly to fine tune application performance.

Encrypt Your Data Using SSL

Ensure that your data is secure by encrypting the wire traffic between the server and client using SSL encryption:

  1. Set the EncryptionMethod connect option to SSL.
  2. Specify the location and password of the trustStore file used for SSL server authentication. Set connect options or system properties (javax.net.ssl.trustStore and javax.net.ssl.trustStorePassword).
  3. If your database server is configured for SSL client authentication, configure your keyStore information:
    • Specify the location and password of the keyStore file. Either set connect options or Java system properties (javax.net.ssl.keyStore and javax.net.ssl.keyStorePassword).
    • If any key entry in the keyStore file is passwordprotected,set the KeyPassword property to thekey password.

Single Sign-on With Kerberos

Kerberos is an authentication protocol, which enables secure proof of identity over a non-secure network. It is also used for enabling single sign-on across multiple sites by delegating credentials. To enable Kerberos:

  1. Set the authenticationMethod connect option to Kerberos.
  2. Modify the krb5.conf file to contain your Kerberos realm and the KDC name for that realm. Alternatively, you can set the java.security.krb5.realm and java.security.krb5.kdc system properties.
  3. If using Kerberos authentication with a Security Manager,grant security permissions to the application and driver.

Hot Tip

These security features are not supported by all databases and database versions. Check to ensure your database is setup appropriately before attempting Kerberos and SSL connections.

Application Failover

Application failover is the ability for a driver to detect a connection failure and seamlessly reconnect you to an alternate server. Various types of failover exist for JDBC drivers so check your driver documentation for support - the most common are listed below:

Connection Failover In the case of the primary connection being unavailable, the connection will be established with the alternate server.
Extended Failover While the application is running, if a connection failover occurs, the driver will reconnect to an alternate server and post a transaction failure to the application.
Select Failover Same as extended, except instead of posting a transaction failure, this level will reposition any ResultSets, so the application will not know there was a failure at all.

Bulk Loading

Loading large amounts of data into a database quickly requires something more powerful than standard addBatch(). Database vendors offer a way to bulk load data, bypassing the normal wire protocol and normal insert procedure. There are 2 ways to use Bulk Loading with a JDBC driver that supports it:

  1. Set enableBulkLoad connect option to true. This will make addBatch() calls use the bulk load protocol over the wire.
  2. Use a Bulk Load object:
17
1
​
2
// Get Database Connection
3
​
4
Connection con = DriverManager.getConnection(“jdbc:datadirect:orac
5
le://server3:1521;ServiceName=ORCL;User=test;Password=secret”);
6
​
7
// Get a DDBulkLoad object
8
​
9
DDBulkLoad bulkLoad = DDBulkLoadFactory.getInstance(con);
10
bulkLoad.setTableName(“GBMAXTABLE”);
11
bulkLoad.load(“tmp.csv”);
12
​
13
// Alternatively, you can load from any ResultSet object into the
14
target table:
15
​
16
bulkLoad.load(results);
17
​

Hot Tip

For additional Bulk Load options, check the JDBC driver documentation.
Section 8

SQL Quick Reference

Basic Syntax Examples

SQL Construct Example
SELECT statement SELECT * from table1
SELECT (col1,col2,…) from table1
WHERE clause SELECT (col1, col2, col3)
FROM table1 WHERE col1 = ‘foo’
ORDER BY clause SELECT (col1,col2,…)
FROM table_name
ORDER BY column_name [ASC|DESC]
GROUP BY clause SELECT column_name, aggregate_
function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name
INSERT statement
(all columns implicit)
INSERT INTO table1
VALUES (val1, val2, value3,…)
(explicit columns) INSERT INTO table2
(col1,col2,…)
VALUES (val1, val2, value3,…)
UPDATE statement UPDATE table1
SET col1=val1, col2=val2,…
WHERE col3=some_val
DELETE statement DELETE FROM table1
WHERE col2=some_val

Escape Clauses

Escape Type Example
Call (a.k.a. stored procedure {call statement}
{call getBookValues (?,?)}
Function {fn functionCall}
SELECT {fn UCASE(Name)} FROM Employee
Outer Join {oj outer-join}
where outer-join is
table-reference {LEFT | RIGHT | FULL}
OUTER JOIN
{table-reference | outer-join} ON
search-condition
SELECT Customers.CustID, Customers.
Name, Orders.OrderID, Orders.Status
FROM {oj Customers LEFT OUTER JOIN
Orders ON Customers.CustID=Orders.
CustID} WHERE Orders.Status=’OPEN’
Date Escape {d yyy-mm-dd}
UPDATE Orders SET OpenDate={d ‘2005-
01-31’} WHERE OrderID=1025
Time Escape {t hh:mm:ss}
UPDATE Orders SET OrderTime={t
‘12:30:45’} WHERE OrderID=1025
TimeStamp Escape {ts yyyy-mm-dd hh:mm:ss[.f...]}
UPDATE Orders SET shipTS={ts ‘2005-02-
05 12:30:45’} WHERE OrderID=1025

Hot Tip

To get a listing of the functions supported by a given JDBC driver, use the getter methods on the DatabaseMetaData object: getStringFunctions(), getNumericFunctions(), getTimeDateFunctions(), etc.
WildCard Description and Example
% (percent) Subsititute for zero or more characters.
SELECT * from emp where name like ‘Da%’
_ (underscore) Substitute for exactly one character.
SELECT * from books where title like ‘_at in the Hat’
[charlist] Any single character in the charlist.
Select * from animals where name like ‘[cb]at’
[!charlist]
-or-
[^charlist]
Any single character not in the charlist.
Select * from animals where name like ‘[!cb]at’
Select * from animals where name like ‘[^cb]at’
Section 9

JDBC With Hibernate

Hibernate is one of the most popular Object Relational Mapping (ORM) frameworks used with JDBC. It is important to note that even if you choose to use Hibernate instead of writing pure JDBC, Hibernate must use a JDBC driver to get to data! Therefore, Hibernate does not replace JDBC as the data connectivity layer, it merely sits on top of it to interface with the application:

Hibernate

Hot Tip

When choosing a driver to use with Hibernate, ensure your driver supports Codeless Configuration so that you can tune performance and change driver behavior without having to modify the Hibernate code!

When writing Hibernate applications it is important to understand the main files used to setup a Hibernate environment:

Hibernate File Purpose
Dialects (org.hibernate.dialect.*) Describes the SQL behavior of the JDBC driver and database to which the application is connecting.
Configuration File (hibernate.properties or hibernate.cfg.xml) Contains the hibernate configuration settings, such as: JDBC driver and connection information, dialect information, mapping information, etc.
Mapping File The mapping file contains the mapping between the application defined objects and the relational data stored in the database.

Hot Tip

Not all JDBC drivers are created equal! Look for a set of JDBC drivers that can use a single dialect to connect to multiple versions of a database. There’s nothing worse than deploying your application with an Oracle 8 dialect and discover that you need to redeploy with an Oracle 10 dialect!

Like This Refcard? Read More From DZone

related article thumbnail

DZone Article

MySQL: Server vs. Client-Side Prepared Statements in Java
related article thumbnail

DZone Article

JDBC Tutorial Part 1: Connecting to a Database
related article thumbnail

DZone Article

SmileyVars: A Template Engine for SQL
related article thumbnail

DZone Article

JDBC Connection Pool In Payara Using phpMyAdmin (MySQL)
related refcard thumbnail

Free DZone Refcard

Java Application Containerization and Deployment
related refcard thumbnail

Free DZone Refcard

Introduction to Cloud-Native Java
related refcard thumbnail

Free DZone Refcard

Java 15
related refcard thumbnail

Free DZone Refcard

Java 14

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: