You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
- Add GORM v1.25.12 with MySQL and SQLite drivers - Add Viper v1.19.0 for configuration management - Add UUID package for GORM model IDs - Update vendor directory with new dependencies - Update Go module requirements and checksums 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
675 B
Go
33 lines
675 B
Go
package callbacks
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func BeginTransaction(db *gorm.DB) {
|
|
if !db.Config.SkipDefaultTransaction && db.Error == nil {
|
|
if tx := db.Begin(); tx.Error == nil {
|
|
db.Statement.ConnPool = tx.Statement.ConnPool
|
|
db.InstanceSet("gorm:started_transaction", true)
|
|
} else if tx.Error == gorm.ErrInvalidTransaction {
|
|
tx.Error = nil
|
|
} else {
|
|
db.Error = tx.Error
|
|
}
|
|
}
|
|
}
|
|
|
|
func CommitOrRollbackTransaction(db *gorm.DB) {
|
|
if !db.Config.SkipDefaultTransaction {
|
|
if _, ok := db.InstanceGet("gorm:started_transaction"); ok {
|
|
if db.Error != nil {
|
|
db.Rollback()
|
|
} else {
|
|
db.Commit()
|
|
}
|
|
|
|
db.Statement.ConnPool = db.ConnPool
|
|
}
|
|
}
|
|
}
|