mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
Error handling.
This commit is contained in:
4
const.go
4
const.go
@@ -121,7 +121,7 @@ const (
|
||||
AUTH_USER = ExtendedErrorCode(AUTH) | (1 << 8)
|
||||
)
|
||||
|
||||
type OpenFlag uint
|
||||
type OpenFlag uint32
|
||||
|
||||
const (
|
||||
OPEN_READONLY OpenFlag = 0x00000001 /* Ok for sqlite3_open_v2() */
|
||||
@@ -148,7 +148,7 @@ const (
|
||||
OPEN_EXRESCODE OpenFlag = 0x02000000 /* Extended result codes */
|
||||
)
|
||||
|
||||
type AccessFlag uint
|
||||
type AccessFlag uint32
|
||||
|
||||
const (
|
||||
ACCESS_EXISTS AccessFlag = 0
|
||||
|
||||
Reference in New Issue
Block a user