Versions in this module Expand all Collapse all v0 v0.9.0 Aug 6, 2026 Changes in this version + func NewSQLiteDriver() database.DatabaseDriver + type SQLiteDriver struct + func (d *SQLiteDriver) BeginTx(ctx context.Context) (database.Transaction, error) + func (d *SQLiteDriver) Close() error + func (d *SQLiteDriver) Connect(ctx context.Context, dsn string) error + func (d *SQLiteDriver) CreateTable(schema database.TableSchema) (database.Query, error) + func (d *SQLiteDriver) Delete(table string, where string, whereArgs ...interface{}) (database.Query, error) + func (d *SQLiteDriver) DropTable(tableName string) (database.Query, error) + func (d *SQLiteDriver) Exec(ctx context.Context, query string, args ...interface{}) (sql.Result, error) + func (d *SQLiteDriver) Insert(table string, data map[string]interface{}) (database.Query, error) + func (d *SQLiteDriver) MapType(schemaType string) string + func (d *SQLiteDriver) Ping(ctx context.Context) error + func (d *SQLiteDriver) Query(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) + func (d *SQLiteDriver) QueryRow(ctx context.Context, query string, args ...interface{}) *sql.Row + func (d *SQLiteDriver) Select(table string, columns []string, where string, whereArgs ...interface{}) (database.Query, error) + func (d *SQLiteDriver) SupportsArrays() bool + func (d *SQLiteDriver) SupportsLastInsertId() bool + func (d *SQLiteDriver) SupportsReturning() bool + func (d *SQLiteDriver) TableExists(tableName string) (bool, error) + func (d *SQLiteDriver) Update(table string, data map[string]interface{}, where string, ...) (database.Query, error)