Commit commits the transaction
()
| 367 | type Tx interface { |
| 368 | // Commit commits the transaction |
| 369 | Commit() error |
| 370 | // Rollback discards the transaction *unless* it has already been committed. |
| 371 | // It does nothing if Commit has already been called. |
| 372 | // This means that a call to Rollback should almost always be defer'ed right after a call to NewTx. |
no outgoing calls
no test coverage detected