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".
9 lines
79 B
Go
9 lines
79 B
Go
// +build !windows
|
|
|
|
package sqlite3
|
|
|
|
/*
|
|
#cgo pkg-config: sqlite3
|
|
*/
|
|
import "C"
|