mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-11 21:49:13 +00:00
Update, authorizer callbacks.
This commit is contained in:
16
conn.go
16
conn.go
@@ -18,13 +18,15 @@ import (
|
||||
type Conn struct {
|
||||
*sqlite
|
||||
|
||||
interrupt context.Context
|
||||
pending *Stmt
|
||||
log func(code xErrorCode, msg string)
|
||||
collation func(name string)
|
||||
commit func() bool
|
||||
rollback func()
|
||||
arena arena
|
||||
interrupt context.Context
|
||||
pending *Stmt
|
||||
log func(xErrorCode, string)
|
||||
collation func(*Conn, string)
|
||||
authorizer func(AuthorizerActionCode, string, string, string, string) AuthorizerReturnCode
|
||||
update func(AuthorizerActionCode, string, string, int64)
|
||||
commit func() bool
|
||||
rollback func()
|
||||
arena arena
|
||||
|
||||
handle uint32
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user