Versions in this module Expand all Collapse all v1 v1.0.1 Jul 21, 2026 v1.0.0 Jul 21, 2026 Changes in this version + const SQLITE3_TEXT — js/wasm + const SQLITE_BLOB — js/wasm + const SQLITE_FLOAT — js/wasm + const SQLITE_INTEGER — js/wasm + const SQLITE_NULL — js/wasm + type SQLiteConn struct — js/wasm + func (c *SQLiteConn) Backup(path string) error + func (c *SQLiteConn) Begin() (driver.Tx, error) + func (c *SQLiteConn) Close() error + func (c *SQLiteConn) Exec(query string, args []driver.Value) (rs driver.Result, err error) + func (c *SQLiteConn) Prepare(query string) (ds driver.Stmt, err error) + type SQLiteDriver struct — js/wasm + func (d *SQLiteDriver) Open(dsn string) (conn driver.Conn, err error) + type SQLiteResult struct — js/wasm + func (r *SQLiteResult) LastInsertId() (int64, error) + func (r *SQLiteResult) RowsAffected() (int64, error) + type SQLiteRows struct — js/wasm + func (rc *SQLiteRows) Close() error + func (rc *SQLiteRows) Columns() []string + func (rc *SQLiteRows) Next(dest []driver.Value) (err error) + type SQLiteStmt struct — js/wasm + ID string + func (s *SQLiteStmt) Close() error + func (s *SQLiteStmt) Exec(args []driver.Value) (rs driver.Result, err error) + func (s *SQLiteStmt) NumInput() int + func (s *SQLiteStmt) Query(args []driver.Value) (rows driver.Rows, err error) + type SQLiteTx struct — js/wasm + ID string + func (tx *SQLiteTx) Commit() error + func (tx *SQLiteTx) Rollback() error