JDBC: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 21: Line 21:
=JDBC API Usage=
=JDBC API Usage=


{{Internal|JDBC API Usage}}
{{Internal|JDBC API Usage|JDBC API Usage}}

Revision as of 17:25, 25 September 2017

External

Internal

Overview

Java Database Connectivity (JDBC) is an application programming interface (API) for the programming language Java, which defines how a JSE client may access a database. It includes the java.sql and javax.sql packages. javax.sql is part of JSE since 1.4, and includes the following features:

  • The DataSource interface
  • Connection and statement pooling
  • Distributed transactions
  • RowSets

JDBC API Usage

JDBC API Usage