sqlx-transactionmanager icon indicating copy to clipboard operation
sqlx-transactionmanager copied to clipboard

Transaction manager for github.com/jmoiron/sqlx

Results 1 sqlx-transactionmanager issues
Sort by recently updated
recently updated
newest added

In README.md -> Synopsis -> Standard example ``` defer func() { if err := tx.Rollback(); err != nil { // Actually, you should do something... panic(err) } }() tx.MustExec("INSERT INTO...