1 Star 0 Fork 0

tdcq / go-sqlcipher-gm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sqlite3_opt_preupdate_omit.go 767 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangjinpeng 提交于 2023-06-30 14:22 . 修改代码
// Copyright (C) 2019 G.J.R. Timmer <gjr.timmer@gmail.com>.
// Copyright (C) 2018 segment.com <friends@segment.com>
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
// +build !sqlite_preupdate_hook,cgo
package sqlite3
// RegisterPreUpdateHook sets the pre-update hook for a connection.
//
// The callback is passed a SQLitePreUpdateData struct with the data for
// the update, as well as methods for fetching copies of impacted data.
//
// If there is an existing update hook for this connection, it will be
// removed. If callback is nil the existing hook (if any) will be removed
// without creating a new one.
func (c *SQLiteConn) RegisterPreUpdateHook(callback func(SQLitePreUpdateData)) {
// NOOP
}
1
https://gitee.com/revftg/go-sqlcipher-gm.git
git@gitee.com:revftg/go-sqlcipher-gm.git
revftg
go-sqlcipher-gm
go-sqlcipher-gm
v0.0.5

搜索帮助