| Package | Description |
|---|---|
| org.brains2b.data | |
| org.brains2b.data.cursor | |
| org.brains2b.data.sql.cursor |
| Modifier and Type | Class and Description |
|---|---|
class |
CopyException
Exception used when copying data from one data object to another.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TransactionController.commit() |
int |
DataControl.delete()
Delete the data object from the datatore on primary key.
|
int |
DataController.delete(java.lang.Object o)
delete an object of type o from the datastore
|
int |
DataControl.insert()
insert a data object
|
int |
DataController.insert(java.lang.Object o)
insert an object of type o to the datastore
|
T |
DataControl.retrieve()
retrieve a data object on the basis of the primary key contained in Object o
|
<T> T |
DataController.retrieve(T o,
Condition condition)
retrieve an Object of the type of the
Object o which match the supplied
condition. |
java.util.List<T> |
DataControl.retrieveList(Condition con)
retrieve all records meeting the values set in
Condition. |
<T> java.util.List<T> |
DataController.retrieveList(T o,
Condition condition)
retrieve a list of Objects of the type of the
Object o which match the supplied
condition. |
void |
TransactionController.rollback() |
int |
DataControl.update()
Update the data object on primary key.
|
int |
DataController.update(java.lang.Object o)
update an object of type o to the datastore
|
| Modifier and Type | Method and Description |
|---|---|
abstract int |
Cursor.delete(CursorData cd)
delete an object of type o from the datastore
|
abstract CursorData |
Cursor.getProtoType()
get a prototype for this cursor, which is basically a defintion
of the columns and types, but without the values
|
abstract int |
Cursor.insert(CursorData cd)
insert an object of type o to the datastore
|
abstract CursorData |
Cursor.retrieve(Condition condition)
select an Object of the type of the
Object o which match the supplied
condition. |
abstract java.util.List |
Cursor.retrieveList()
retrieve a list of Objects of the type of the
Object |
abstract java.util.List |
Cursor.retrieveList(Condition condition)
retrieve a list of Objects of the type of the
Object o which match the supplied
condition. |
abstract int |
Cursor.update(CursorData cd)
update an object of type o to the datastore
|
| Modifier and Type | Method and Description |
|---|---|
int |
SqlCursor.delete(CursorData cdata) |
CursorData |
SqlCursor.getProtoType() |
int |
SqlCursor.insert(CursorData cdata) |
int |
SqlCursor.insert(CursorData cdata,
boolean skipNull)
insert the cursor data in the table for this cursor
|
CursorData |
SqlCursor.retrieve(Condition con) |
java.util.List |
SqlCursor.retrieveList() |
java.util.List |
SqlCursor.retrieveList(Condition condition) |
int |
SqlCursor.update(CursorData cdata) |