GORM melakukan operasi (create / update / delete) yang dijalankan di dalam transaction untuk memastikan konsistensi data, kita dapat menonaktifkannya selama inisialisasi jika tidak diperlukan, kita akan memperoleh peningkatan kinerja sekitar 30% + setelah itu
Untuk melakukan serangkaian operasi dalam suatu transaction, pada umumnya seperti metode di bawah ini.
db.Transaction(func(tx *gorm.DB)error { // do some database operations in the transaction (use 'tx' from this point, not 'db') if err := tx.Create(&Animal{Name: "Giraffe"}).Error; err != nil { // return any error will rollback return err }
Gorm supports calling transaction control functions (commit / rollback) directly, for example:
// begin a transaction tx := db.Begin()
// do some database operations in the transaction (use 'tx' from this point, not 'db') tx.Create(...)
// ...
// rollback the transaction in case of error tx.Rollback()
// Or commit the transaction tx.Commit()
Contoh Lebih Spesifik
funcCreateAnimals(db *gorm.DB)error { // Note the use of tx as the database handle once you are within a transaction tx := db.Begin() deferfunc() { if r := recover(); r != nil { tx.Rollback() } }()