JDBC: Difference between revisions
Jump to navigation
Jump to search
m (Ovidiu moved page Java javax.sql to JDBC without leaving a redirect) |
|||
Line 3: | Line 3: | ||
* https://en.wikipedia.org/wiki/Java_Database_Connectivity | * https://en.wikipedia.org/wiki/Java_Database_Connectivity | ||
* https://docs.oracle.com/javase/7/docs/api/javax/sql/package-summary.html | * https://docs.oracle.com/javase/7/docs/api/javax/sql/package-summary.html | ||
* http://www.oracle.com/technetwork/java/javase/jdbc/index.html | |||
=Internal= | =Internal= |
Revision as of 14:35, 25 September 2017
External
- https://en.wikipedia.org/wiki/Java_Database_Connectivity
- https://docs.oracle.com/javase/7/docs/api/javax/sql/package-summary.html
- http://www.oracle.com/technetwork/java/javase/jdbc/index.html
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