| 368 | } |
| 369 | |
| 370 | void oracle_session_backend::commit() |
| 371 | { |
| 372 | sword res = OCITransCommit(svchp_, errhp_, OCI_DEFAULT); |
| 373 | if (res != OCI_SUCCESS) |
| 374 | { |
| 375 | throw oracle_soci_error(res, errhp_); |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | void oracle_session_backend::rollback() |
| 380 | { |
nothing calls this directly
no outgoing calls
no test coverage detected