mirror of
https://github.com/astaxie/beego.git
synced 2025-01-22 12:47:11 +00:00
Revert "update"
This reverts commit 2909ff336667627a34edd5c9625c1e6812a6a85f.
This commit is contained in:
parent
2909ff3366
commit
5bcde306ea
@ -105,61 +105,17 @@ func (ac *_dbCache) getDefault() (al *alias) {
|
||||
}
|
||||
|
||||
type DB struct {
|
||||
inTx bool
|
||||
tx *sql.Tx
|
||||
*sync.RWMutex
|
||||
DB *sql.DB
|
||||
stmts map[string]*sql.Stmt
|
||||
}
|
||||
|
||||
func (d *DB) Begin() (*sql.Tx, error) {
|
||||
if d.inTx {
|
||||
return nil, ErrTxHasBegan
|
||||
}
|
||||
tx, err := d.DB.Begin()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
d.inTx = true
|
||||
d.tx = tx
|
||||
return d.tx, nil
|
||||
return d.DB.Begin()
|
||||
}
|
||||
|
||||
func (d *DB) BeginTx(ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error) {
|
||||
if d.inTx {
|
||||
return nil, ErrTxHasBegan
|
||||
}
|
||||
tx, err := d.DB.BeginTx(ctx, opts)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
d.inTx = true
|
||||
d.tx = tx
|
||||
return d.tx, nil
|
||||
}
|
||||
|
||||
func (d *DB) Commit() error {
|
||||
if !d.inTx {
|
||||
return ErrTxDone
|
||||
}
|
||||
err := d.tx.Commit()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
d.inTx = false
|
||||
return nil
|
||||
}
|
||||
|
||||
func (d *DB) Rollback() error {
|
||||
if !d.inTx {
|
||||
return ErrTxDone
|
||||
}
|
||||
err := d.tx.Commit()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
d.inTx = false
|
||||
return nil
|
||||
return d.DB.BeginTx(ctx, opts)
|
||||
}
|
||||
|
||||
func (d *DB) getStmt(query string) (*sql.Stmt, error) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user