Begins a new Transaction This method wraps the native ups_txn_begin function. More information: C documentation @param flags flags for beginning the Transaction
(int flags)
| 446 | * @param flags flags for beginning the Transaction |
| 447 | */ |
| 448 | public Transaction begin(int flags) |
| 449 | throws DatabaseException { |
| 450 | return new Transaction(this, ups_txn_begin(m_handle, flags)); |
| 451 | } |
| 452 | |
| 453 | /** |
| 454 | * Begins a new Transaction |