Versions in this module Expand all Collapse all v0 v0.0.1 Sep 26, 2022 Changes in this version + func StatementCreateOutputParsingTable() (string, string) + type DB struct + func NewMemDB() (*DB, error) + func (d *DB) Close() error + func (d *DB) CreateTable(ctx context.Context, get func() (string, string)) (Table, error) + type Table struct + func (t *Table) Delete(ctx context.Context, where string) error + func (t *Table) Insert(ctx context.Context, columns []string, values ...any) error + func (t *Table) Query(ctx context.Context, columns []string, where string) ([][]string, error)