<T> InsertResult<T> |
OrmUpdater.insertAndGet(List<T> objects) |
Inserts objects and get the last insert result.
|
<T> InsertResult<T> |
OrmUpdater.insertAndGet(T object) |
Inserts an object and get the result.
|
<T> InsertResult<T> |
OrmUpdater.insertAndGet(T... objects) |
Inserts objects and get the last insert result.
|
InsertResult<T> |
TypedOrmUpdater.insertAndGet(List<T> objects) |
Inserts objects and get the last insert result.
|
InsertResult<T> |
TypedOrmUpdater.insertAndGet(T object) |
Inserts an object and get the result.
|
InsertResult<T> |
TypedOrmUpdater.insertAndGet(T... objects) |
Inserts objects and get the last insert result.
|
<T> InsertResult<T> |
OrmUpdater.insertAndGetOn(String tableName,
List<T> objects) |
Inserts objects and get the last insert result.
|
<T> InsertResult<T> |
OrmUpdater.insertAndGetOn(String tableName,
T object) |
Inserts an object and get the insert result.
|
<T> InsertResult<T> |
OrmUpdater.insertAndGetOn(String tableName,
T... objects) |
Inserts objects and get the last insert result.
|
InsertResult<T> |
TypedOrmUpdater.insertAndGetOn(String tableName,
List<T> objects) |
Inserts objects and get the last insert result.
|
InsertResult<T> |
TypedOrmUpdater.insertAndGetOn(String tableName,
T object) |
Inserts an object and get the insert result.
|
InsertResult<T> |
TypedOrmUpdater.insertAndGetOn(String tableName,
T... objects) |
Inserts objects and get the last insert result.
|