This commit introduces a new type 'ErrNo', implementing the error interface. Constants for all sqlite3 error codes are provided in the new source file "error.go".
8 lines
144 B
Go
8 lines
144 B
Go
package sqlite3
|
|
|
|
/*
|
|
#cgo CFLAGS: -I. -fno-stack-check -fno-stack-protector -mno-stack-arg-probe
|
|
#cgo LDFLAGS: -lmingwex -lmingw32
|
|
*/
|
|
import "C"
|