Versions in this module Expand all Collapse all v0 v0.0.1 Jun 25, 2024 Changes in this version + type EasySqlite struct + func New(path string, migrations fs.FS, dirName string) (*EasySqlite, error) + func (s *EasySqlite) DoInTx(ctx context.Context, callback func(ctx context.Context) error) error + func (s *EasySqlite) ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error) + func (s *EasySqlite) GetContext(ctx context.Context, dest any, query string, args ...any) error + func (s *EasySqlite) MustExecContext(ctx context.Context, query string, args ...any) sql.Result + func (s *EasySqlite) PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) + func (s *EasySqlite) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) + func (s *EasySqlite) QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row + func (s *EasySqlite) SelectContext(ctx context.Context, dest any, query string, args ...any) error