Versions in this module Expand all Collapse all v0 v0.0.2 Nov 15, 2023 v0.0.1 Nov 3, 2023 Changes in this version + func New(serviceName string) (store.Driver, error) + type ReadTx struct + func (r *ReadTx) Get(out any, query string, args ...any) error + func (r *ReadTx) Select(out []any, query string, args ...any) error + type ReadWriteTx struct + func (rw *ReadWriteTx) Delete(query string, args ...any) error + func (rw *ReadWriteTx) Exec(query string, args ...any) (int64, error) + type Sqlite struct + func (s *Sqlite) Exec(rec store.TxRecord, handler store.TxHandler) (store.Tx, any, error) + func (s *Sqlite) Migrate(statements []string) error + type Tx struct + func (t *Tx) DidWrite() bool + func (t *Tx) Read() store.ReadTx + func (t *Tx) ReadWrite() store.ReadWriteTx