| 112 | } |
| 113 | |
| 114 | void firebird_session_backend::commit() |
| 115 | { |
| 116 | ISC_STATUS stat[ISC_STATUS_LENGTH]; |
| 117 | |
| 118 | if (trhp_ != 0) |
| 119 | { |
| 120 | if (isc_commit_transaction(stat, &trhp_)) |
| 121 | { |
| 122 | throw_iscerror(stat); |
| 123 | } |
| 124 | |
| 125 | trhp_ = 0; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | void firebird_session_backend::rollback() |
| 130 | { |
nothing calls this directly
no test coverage detected