Java Database Connectivity

Last updated
JDBC
Developer(s) Oracle Corporation
Stable release
JDBC 4.3 / September 21, 2017 (2017-09-21)
Operating system Cross-platform
Type Data access API
Website JDBC API Guide

Java Database Connectivity (JDBC) is an application programming interface (API) for the Java programming language which defines how a client may access a database. It is a Java-based data access technology used for Java database connectivity. It is part of the Java Standard Edition platform, from Oracle Corporation. It provides methods to query and update data in a database, and is oriented toward relational databases. A JDBC-to-ODBC bridge enables connections to any ODBC-accessible data source in the Java virtual machine (JVM) host environment.

Contents

History and implementation

Sun Microsystems released JDBC as part of Java Development Kit (JDK) 1.1 on February 19, 1997. [1] Since then it has been part of the Java Platform, Standard Edition (Java SE).

The JDBC classes are contained in the Java package java.sql and javax.sql .

Starting with version 3.1, JDBC has been developed under the Java Community Process. JSR 54 specifies JDBC 3.0 (included in J2SE 1.4), JSR 114 specifies the JDBC Rowset additions, and JSR 221 is the specification of JDBC 4.0 (included in Java SE 6). [2]

JDBC 4.1, is specified by a maintenance release 1 of JSR 221 [3] and is included in Java SE 7. [4]

JDBC 4.2, is specified by a maintenance release 2 of JSR 221 [5] and is included in Java SE 8. [6]

The latest version, JDBC 4.3, is specified by a maintenance release 3 of JSR 221 [7] and is included in Java SE 9. [8]

JDBC versions
JDBC versionJava versionRelease TypeRelease date
1.1JDK 1.1Main1997-02-19. [1]
3.0 J2SE 1.4Main2002-05-09
4.0 Java SE 6Main2006-12-11
4.1 Java SE 7Maintenance2011-10-13
4.2 Java SE 8Maintenance2014-03-04
4.3 Java SE 9Maintenance2017-09-21

Functionality

Host database types which Java can convert to with a function
Oracle DatatypesetXXX() Methods
CHARsetString()
VARCHAR2setString()
NUMBERsetBigDecimal()
setBoolean()
setByte()
setShort()
setInt()
setLong()
setFloat()
setDouble()
INTEGERsetInt()
FLOATsetDouble()
CLOBsetClob()
BLOBsetBlob()
RAWsetBytes()
LONGRAWsetBytes()
DATEsetDate()
setTime()
setTimestamp()

Since JDBC ('Java Database Connectivity') is mostly a collection of interface definitions and specifications, it allows multiple implementations of these interfaces to exist and be used by the same application at runtime. The API provides a mechanism for dynamically loading the correct Java packages and registering them with the JDBC Driver Manager (DriverManager). DriverManager is used as a Connection factory for creating JDBC connections.

JDBC connections support creating and executing statements. JDBC connections support update statements such as SQL's CREATE, INSERT, UPDATE and DELETE, or query statements such as SELECT. Additionally, stored procedures may be invoked through a JDBC connection. JDBC represents statements using one of the following classes:

PreparedStatement allows the dynamic query to vary depending on the query parameter. [11]

Update statements such as INSERT, UPDATE and DELETE return an update count indicating the number of rows affected in the database as an integer. [13] These statements do not return any other information.

Query statements return a JDBC row result set. The row result set is used to walk over the result set. Individual columns in a row are retrieved either by name or by column number. There may be any number of rows in the result set. The row result set has metadata that describes the names of the columns and their types.

There is an extension to the basic JDBC API in the javax.sql .

JDBC connections are often managed via a connection pool rather than obtained directly from the driver. [14]

Examples

When a Java application needs a database connection, one of the DriverManager.getConnection() methods is used to create a JDBC Connection. The URL used is dependent upon the particular database and JDBC driver. It will always begin with the "jdbc:" protocol, but the rest is up to the particular vendor.

Connectionconn=DriverManager.getConnection("jdbc:somejdbcvendor:other data needed by some jdbc vendor","myLogin","myPassword");try{/* you use the connection here */}finally{//It's important to close the connection when you are done with ittry{conn.close();}catch(Throwablee){/* Propagate the original exception                                instead of this one that you want just logged */logger.warn("Could not close JDBC Connection",e);}}

Starting from Java SE 7 you can use Java's try-with-resources statement to simplify the above code:

try(Connectionconn=DriverManager.getConnection("jdbc:somejdbcvendor:other data needed by some jdbc vendor","myLogin","myPassword")){/* you use the connection here */}// the VM will take care of closing the connection

Once a connection is established, a Statement can be created.

try(Statementstmt=conn.createStatement()){stmt.executeUpdate("INSERT INTO MyTable(name) VALUES ('my name')");}

Note that Connections, Statements, and ResultSets often tie up operating system resources such as sockets or file descriptors. In the case of Connections to remote database servers, further resources are tied up on the server, e.g. cursors for currently open ResultSets. It is vital to close() any JDBC object as soon as it has played its part; garbage collection should not be relied upon. The above try-with-resources construct is a code pattern that obviates this.

Data is retrieved from the database using a database query mechanism. The example below shows creating a statement and executing a query.

try(Statementstmt=conn.createStatement();ResultSetrs=stmt.executeQuery("SELECT * FROM MyTable")){while(rs.next()){intnumColumns=rs.getMetaData().getColumnCount();for(inti=1;i<=numColumns;i++){// Column numbers start at 1.// Also, there are many methods on the result set to return//  the column as a particular type. Refer to the Sun documentation//  for the list of valid conversions.System.out.println("COLUMN "+i+" = "+rs.getObject(i));}}}

The following code is an example of a PreparedStatement query which uses conn and class from the first example:

try(PreparedStatementps=conn.prepareStatement("SELECT i.*, j.* FROM Omega i, Zappa j WHERE i.name = ? AND j.num = ?")){// In the SQL statement being prepared, each question mark is a placeholder// that must be replaced with a value you provide through a "set" method invocation.// The following two method calls replace the two placeholders; the first is// replaced by a string value, and the second by an integer value.ps.setString(1,"Poor Yorick");ps.setInt(2,8008);// The ResultSet, rs, conveys the result of executing the SQL statement.// Each time you call rs.next(), an internal row pointer, or cursor,// is advanced to the next row of the result.  The cursor initially is// positioned before the first row.try(ResultSetrs=ps.executeQuery()){while(rs.next()){intnumColumns=rs.getMetaData().getColumnCount();for(inti=1;i<=numColumns;i++){// Column numbers start at 1.// Also, there are many methods on the result set to return// the column as a particular type. Refer to the Sun documentation// for the list of valid conversions.System.out.println("COLUMN "+i+" = "+rs.getObject(i));}// for}// while}// try}// try

If a database operation fails, JDBC raises an SQLException . There is typically very little one can do to recover from such an error, apart from logging it with as much detail as possible. It is recommended that the SQLException be translated into an application domain exception (an unchecked one) that eventually results in a transaction rollback and a notification to the user.

The following code is an example of a database transaction:

booleanautoCommitDefault=conn.getAutoCommit();try{conn.setAutoCommit(false);/* You execute statements against conn here transactionally */conn.commit();}catch(Throwablee){try{conn.rollback();}catch(Throwablee){logger.warn("Could not rollback transaction",e);}throwe;}finally{try{conn.setAutoCommit(autoCommitDefault);}catch(Throwablee){logger.warn("Could not restore AutoCommit setting",e);}}

For an example of a CallableStatement (to call stored procedures in the database), see the JDBC API Guide documentation.

importjava.sql.Connection;importjava.sql.DriverManager;importjava.sql.Statement;publicclassMydb1{staticStringURL="jdbc:mysql://localhost/mydb";publicstaticvoidmain(String[]args){try{Class.forName("com.mysql.jdbc.Driver");Connectionconn=DriverManager.getConnection(URL,"root","root");Statementstmt=conn.createStatement();Stringsql="INSERT INTO emp1 VALUES ('pctb5361', 'kiril', 'john', 968666668)";stmt.executeUpdate(sql);System.out.println("Inserted records into the table...");}catch(Exceptione){e.printStackTrace();}}}

JDBC drivers

JDBC drivers are client-side adapters (installed on the client machine, not on the server) that convert requests from Java programs to a protocol that the DBMS can understand.

Types

Commercial and free drivers provide connectivity to most relational-database servers. These drivers fall into one of the following types:

Note also a type called an internal JDBC driver - a driver embedded with JRE in Java-enabled SQL databases. It is used for Java stored procedures. This does not fit into the classification scheme above, although it would likely resemble either a type 2 or type 4 driver (depending on whether the database itself is implemented in Java or not). An example of this is the KPRB (Kernel Program Bundled) driver [16] supplied with Oracle RDBMS. "jdbc:default:connection" offers a relatively standard way of making such a connection (at least the Oracle database and Apache Derby support it). However, in the case of an internal JDBC driver, the JDBC client actually runs as part of the database being accessed, and so can access data directly rather than through network protocols.

Sources

See also

Citations

  1. 1 2 "Sun Ships JDK 1.1 -- Javabeans Included". www.sun.com. Sun Microsystems. 1997-02-19. Archived from the original on 2008-02-10. Retrieved 2010-02-15. February 19, 1997 - The JDK 1.1 [...] is now available [...]. This release of the JDK includes: [...] Robust new features including JDBC for database connectivity
  2. JDBC API Specification Version: 4.0.
  3. "The Java Community Process(SM) Program - communityprocess - mrel". jcp.org. Retrieved 22 March 2018.
  4. "JDBC 4.1". docs.oracle.com. Retrieved 22 March 2018.
  5. "The Java Community Process(SM) Program - communityprocess - mrel". jcp.org. Retrieved 22 March 2018.
  6. "JDBC 4.2". docs.oracle.com. Retrieved 22 March 2018.
  7. "The Java Community Process(SM) Program - communityprocess - mrel". jcp.org. Retrieved 22 March 2018.
  8. "java.sql (Java SE 9 & JDK 9)". docs.oracle.com. Retrieved 22 March 2018.
  9. 1 2 3 4 Bai 2022, p. 74.
  10. Bai 2022, pp. 122–124, §4.2.3.5 More About the Execution Methods.
  11. 1 2 3 Bai 2022, pp. 72–74, §3.2 JDBC Components and Architecture.
  12. Horstmann 2022, §5.5.3 SQL Escapes.
  13. 1 2 Bai 2022, pp. 122–124, §4.2.3.5 JDBC Components and Architecture.
  14. Bai 2022, p. 83, §3.5.1 JDBC DataSource.
  15. "Java JDBC API". docs.oracle.com. Retrieved 22 March 2018.
  16. Greenwald, Rick; Stackowiak, Robert; Stern, Jonathan (1999). Oracle Essentials: Oracle Database 10g. Essentials Series (3 ed.). Sebastopol, California: O'Reilly Media, Inc. (published 2004). p. 318. ISBN   9780596005856 . Retrieved 2016-11-03. The in-database JDBC driver (JDBC KPRB)[:] Java code uses the JDBC KPRB (Kernel Program Bundled) version to access SQL on the same server.
  17. "JDBC Drivers - CData Software". CData Software. Retrieved 22 March 2018.
  18. "JDBC Drivers - CData Software". CData Software. Retrieved 22 March 2018.
  19. "New Type 5 JDBC Driver — DataDirect Connect".
  20. "Access External Databases from RPG with JDBCR4 Meat of the Matter". 28 June 2012. Retrieved 12 April 2016.
  21. Sualeh Fatehi. "SchemaCrawler". GitHub.

Related Research Articles

In computing, Open Database Connectivity (ODBC) is a standard application programming interface (API) for accessing database management systems (DBMS). The designers of ODBC aimed to make it independent of database systems and operating systems. An application written using ODBC can be ported to other platforms, both on the client and server side, with few changes to the data access code.

Oracle TimesTen In-Memory Database is an in-memory, relational database management system with persistence and high availability. Originally designed and implemented at Hewlett-Packard labs in Palo Alto, California, TimesTen spun out into a separate startup in 1996 and was acquired by Oracle Corporation in 2005.

In computing, the Oracle Call Interface (OCI) consists of a set of C-language software APIs which provide an interface to the Oracle database.

A database abstraction layer is an application programming interface which unifies the communication between a computer application and databases such as SQL Server, IBM Db2, MySQL, PostgreSQL, Oracle or SQLite. Traditionally, all database vendors provide their own interface that is tailored to their products. It is up to the application programmer to implement code for the database interfaces that will be supported by the application. Database abstraction layers reduce the amount of work by providing a consistent API to the developer and hide the database specifics behind this interface as much as possible. There exist many abstraction layers with different interfaces in numerous programming languages. If an application has such a layer built in, it is called database-agnostic.

ADO.NET is a data access technology from the Microsoft .NET Framework that provides communication between relational and non-relational systems through a common set of components. ADO.NET is a set of computer software components that programmers can use to access data and data services from a database. It is a part of the base class library that is included with the Microsoft .NET Framework. It is commonly used by programmers to access and modify data stored in relational database systems, though it can also access data in non-relational data sources. ADO.NET is sometimes considered an evolution of ActiveX Data Objects (ADO) technology, but was changed so extensively that it can be considered an entirely new product.

OLE DB, an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE. Microsoft originally intended OLE DB as a higher-level replacement for, and successor to, ODBC, extending its feature set to support a wider variety of non-relational databases, such as object databases and spreadsheets that do not necessarily implement.

A query plan is a sequence of steps used to access data in a SQL relational database management system. This is a specific case of the relational model concept of access plans.

<span class="mw-page-title-main">Microsoft Data Access Components</span> Framework

Microsoft Data Access Components is a framework of interrelated Microsoft technologies that allows programmers a uniform and comprehensive way of developing applications that can access almost any data store. Its components include: ActiveX Data Objects (ADO), OLE DB, and Open Database Connectivity (ODBC). There have been several deprecated components as well, such as the Jet Database Engine, MSDASQL, and Remote Data Services (RDS). Some components have also become obsolete, such as the former Data Access Objects API and Remote Data Objects.

Apache Derby is a relational database management system (RDBMS) developed by the Apache Software Foundation that can be embedded in Java programs and used for online transaction processing. It has a 3.5 MB disk-space footprint.

A JDBC driver is a software component enabling a Java application to interact with a database. JDBC drivers are analogous to ODBC drivers, ADO.NET data providers, and OLE DB providers.

In ADO.NET, a DataReader is a broad category of objects used to sequentially read data from a data source. DataReaders provide a very efficient way to access data, and can be thought of as a Firehose cursor from ASP Classic, except that no server-side cursor is used. A DataReader parses a Tabular Data Stream from Microsoft SQL Server, and other methods of retrieving data from other sources.

SQLyog is a GUI tool for the RDBMS MySQL. It is developed by Webyog, Inc., based in Bangalore, India, and Santa Clara, California. SQLyog is being used by more than 30,000 customers worldwide and has been downloaded more than 2,000,000 times.

Jakarta Persistence is a Jakarta EE application programming interface specification that describes the management of relational data in enterprise Java applications.

Scriptella is an open source ETL (Extract-Transform-Load) and script execution tool written in Java. It allows the use of SQL or another scripting language suitable for the data source to perform required transformations. Scriptella does not offer any graphical user interface.

HBase is an open-source non-relational distributed database modeled after Google's Bigtable and written in Java. It is developed as part of Apache Software Foundation's Apache Hadoop project and runs on top of HDFS or Alluxio, providing Bigtable-like capabilities for Hadoop. That is, it provides a fault-tolerant way of storing large quantities of sparse data.

Oracle Business Intelligence Enterprise Edition is a business intelligence server developed by Oracle. It includes advanced business intelligence tools built upon a unified architecture. The server provides centralized data access to all business related information in a corporate entity. It integrates data via sophisticated capabilities from multiple sources.

Apache Empire-db is a Java library that provides a high level object-oriented API for accessing relational database management systems (RDBMS) through JDBC. Apache Empire-db is open source and provided under the Apache License 2.0 from the Apache Software Foundation.

CUBRID ( "cube-rid") is an open-source SQL-based relational database management system (RDBMS) with object extensions developed by CUBRID Corp. for OLTP. The name CUBRID is a combination of the two words cube and bridge, cube standing for a space for data and bridge standing for data bridge.

<span class="mw-page-title-main">XQuery API for Java</span> Application programming interface

XQuery API for Java (XQJ) refers to the common Java API for the W3C XQuery 1.0 specification.

In database management systems (DBMS), a prepared statement, parameterized statement, or parameterized query is a feature where the database pre-compiles SQL code and stores the results, separating it from data. Benefits of prepared statements are:

References