mirror of
https://gitee.com/johng/gf.git
synced 2024-12-01 03:38:35 +08:00
22 lines
629 B
Go
22 lines
629 B
Go
|
// Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
||
|
//
|
||
|
// This Source Code Form is subject to the terms of the MIT License.
|
||
|
// If a copy of the MIT was not distributed with this file,
|
||
|
// You can obtain one at https://github.com/gogf/gf.
|
||
|
|
||
|
package gdb
|
||
|
|
||
|
// LockUpdate sets the lock for update for current operation.
|
||
|
func (m *Model) LockUpdate() *Model {
|
||
|
model := m.getModel()
|
||
|
model.lockInfo = "FOR UPDATE"
|
||
|
return model
|
||
|
}
|
||
|
|
||
|
// LockShared sets the lock in share mode for current operation.
|
||
|
func (m *Model) LockShared() *Model {
|
||
|
model := m.getModel()
|
||
|
model.lockInfo = "LOCK IN SHARE MODE"
|
||
|
return model
|
||
|
}
|