Java Database Connectivity: Difference between revisions

Content deleted Content added
RETF using AWB
No edit summary
Line 1:
'''JDBC''' is an [[Application programming interface|API]] for the [[Java programming language]] that defines how a client may access a [[database]]. It provides methods for querying and updating data in a database. JDBC is oriented towards [[Relational database management system|relational databases]].
 
The [[Java Platform, Standard Edition]] includes the JDBC API together with an [[Open database connectivity|ODBC]] implementation of the API enabling connections to any relational database that supports [[Open database connectivity|ODBC]]. This driver is [[native code]] and not Java, and is [[closed source]].[http://java.sun.com/products/jdbc/jdbc-3_0-fr-spec-license.html]
 
== Overview ==