Versions in this module Expand all Collapse all v0 v0.2.0 Feb 4, 2025 Changes in this version + const LimitLength + const OpenCreate + const OpenExclusive + const OpenNoMutex + const OpenReadOnly + const OpenReadWrite + const OpenSharedCache + const OpenURI + const OpenWAL + const ResultCodeAbort + const ResultCodeBusy + const ResultCodeCantOpen + const ResultCodeConstraintUnique + const ResultCodeGenericError + const ResultCodeInterrupt + const TypeNull + var ErrBlobClosed = sqlite.ErrBlobClosed + var ErrCode = sqlite.ErrCode + func IsPrimaryResultCodeErr(err error, code ResultCode) bool + func IsResultCode(err error, code ResultCode) bool + func StmtColumnOption[V any](stmt *Stmt, col int, get func(_ *Stmt, col int) V, opt *g.Option[V]) + type Blob = sqlite.Blob + type ColIter int + func (me *ColIter) PostInc() int + func (me ColIter) Get() int + type Conn struct + func OpenConn(path string, flags ...OpenFlags) (*Conn, error) + func (c *Conn) CreateFunction(name string, impl *FunctionImpl) error + type Context = sqlite.Context + type FunctionImpl struct + Deterministic bool + NArgs int + Scalar func(ctx Context, args []Value) (GoValue, error) + type GoValue any + func BlobValue(b []byte) GoValue + type OpenFlags = sqlite.OpenFlags + type ResultCode sqlite.ErrorCode + func GetResultCode(err error) (_ ResultCode, ok bool) + func (me ResultCode) ToPrimary() ResultCode + type Stmt = sqlite.Stmt + type Value = sqlite.Value v0.1.0 Nov 13, 2023