Package | Description |
---|---|
net.java.ao | |
net.java.ao.db |
Modifier and Type | Method and Description |
---|---|
<T extends RawEntity<K>,K> |
EntityManager.create(Class<T> type,
DBParam... params)
Creates a new entity of the specified type with the optionally specified
initial parameters.
|
protected <T extends RawEntity<K>,K> |
DatabaseProvider.executeInsertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
String sql,
DBParam... params)
Delegate method to execute an INSERT statement returning any auto-generated
primary key values.
|
<T extends RawEntity<K>,K> |
DatabaseProvider.insertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
boolean pkIdentity,
String table,
DBParam... params)
Generates an INSERT statement to be used to create a new row in the
database, returning the primary key value.
|
Modifier and Type | Method and Description |
---|---|
protected <T extends RawEntity<K>,K> |
PostgreSQLDatabaseProvider.executeInsertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
String sql,
DBParam... params) |
protected <T extends RawEntity<K>,K> |
OracleDatabaseProvider.executeInsertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
String sql,
DBParam... params) |
protected <T extends RawEntity<K>,K> |
HSQLDatabaseProvider.executeInsertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
String sql,
DBParam... params) |
<T extends RawEntity<K>,K> |
SQLServerDatabaseProvider.insertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
boolean pkIdentity,
String table,
DBParam... params) |
<T extends RawEntity<K>,K> |
PostgreSQLDatabaseProvider.insertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
boolean pkIdentity,
String table,
DBParam... params) |
<T extends RawEntity<K>,K> |
HSQLDatabaseProvider.insertReturningKey(EntityManager manager,
Connection conn,
Class<T> entityType,
Class<K> pkType,
String pkField,
boolean pkIdentity,
String table,
DBParam... params) |
Copyright © 2007–2023 Atlassian. All rights reserved.