/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
database/gdb/gdb_model_lock.go
21 строка
622 B
John Guo
copyright comment update
17 янв 2021, 16:46
17 янв 2021, 16:46
093034a
Код
Авторство
О чём код?
// Copyright GoFrame Author(https://goframe.org). 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 }