Versions in this module Expand all Collapse all v3 v3.0.1 Feb 6, 2026 Changes in this version + type Config struct + DBSource string + type Row = map[string]any + type Rows = []Row + type SQLiteService struct + func New() *SQLiteService + func NewWithConfig(config *Config) *SQLiteService + func (s *SQLiteService) Close() error + func (s *SQLiteService) ClosePrepared(stmt *Stmt) error + func (s *SQLiteService) Configure(config *Config) + func (s *SQLiteService) ExecContext(ctx context.Context, query string, args ...any) error + func (s *SQLiteService) ExecPrepared(ctx context.Context, stmt *Stmt, args ...any) error + func (s *SQLiteService) Execute(query string, args ...any) error + func (s *SQLiteService) Open() error + func (s *SQLiteService) Prepare(query string) (*Stmt, error) + func (s *SQLiteService) PrepareContext(ctx context.Context, query string) (*Stmt, error) + func (s *SQLiteService) Query(query string, args ...any) (Rows, error) + func (s *SQLiteService) QueryContext(ctx context.Context, query string, args ...any) (Rows, error) + func (s *SQLiteService) QueryPrepared(ctx context.Context, stmt *Stmt, args ...any) (Rows, error) + func (s *SQLiteService) ServiceName() string + func (s *SQLiteService) ServiceShutdown() error + func (s *SQLiteService) ServiceStartup(ctx context.Context, options application.ServiceOptions) error + type Stmt struct + func (s *Stmt) Close() error + func (s *Stmt) MarshalText() ([]byte, error) + func (s *Stmt) UnmarshalText(text []byte) error