| java.lang.Object org.hsqldb.Transaction
Transaction | class Transaction (Code) | | Represents a single row table operation.
author: Thomas Mueller (Hypersonic SQL Group) version: 1.8.0 since: Hypersonic SQL |
isDelete | boolean isDelete(Code) | | |
Transaction | Transaction(boolean delete, Table table, Row row, long SCN)(Code) | | Constructor.
Parameters: delete - if true, this represents a single row delete action, elsea single row insert action Parameters: nested - true if this action is part of a transaction initiatedwithin an INSERT INTO or UPDATE statement Parameters: table - the Table object against which the operation occured Parameters: row - the row data that iis inserted or deleted |
rollback | void rollback(Session session, boolean log)(Code) | | Undoes the single row delete or insert represented by this object.
Parameters: session - the session context in which to perform the undo Parameters: log - if true log the work throws: HsqlException - if a database access error occurs |
|
|