JDBC API Usage

From NovaOrdis Knowledge Base
Revision as of 18:23, 25 September 2017 by Ovidiu (talk | contribs) (→‎Query)
Jump to navigation Jump to search

Internal

JDBC Connection Life Cycle

JDBC Connection Life Cycle

Database Metadata

The database metadata is an object that contains metadata about the database the current connection belongs to.

Connection c = ...;
DatabaseMetaData dmd = c.getMetaData();

Query

Create

Update

Delete