Versions in this module Expand all Collapse all v0 v0.1.0 Jan 19, 2026 v0.0.1 Jun 29, 2025 Changes in this version + const InMemoryDB + type DB struct + func New(dbPath string, readOnly bool) (*DB, error) + func (db *DB) Close() error + func (db *DB) Execute(statement string, args ...interface{}) (int64, error) + func (db *DB) GetTableSchema(tableName string) ([]map[string]interface{}, error) + func (db *DB) GetTables() ([]string, error) + func (db *DB) Path() string + func (db *DB) Query(query string, args ...interface{}) ([]map[string]interface{}, error)