mattn/go-sqlite3

Feature: BEGIN immediate/exclusive per transaction

Open

#400 geöffnet am 25. März 2017

Auf GitHub ansehen
 (16 Kommentare) (1 Reaktion) (0 zugewiesene Personen)C (1.105 Forks)batch import
enhancementhelp wantedresearch

Repository-Metriken

Stars
 (7.000 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 1T 5h) (9 gemergte PRs in 30 T)

Beschreibung

Right now, the _txlock connection parameter determines which BEGIN statement is used to start a transaction. I'd like to be able to pick this at a per-transaction level. I don't think there's a way of exposing this functionality to database/sql, but it would be good to add an option there eventually. I'm imagining adding:

func (c *SQLiteConn) BeginWithType(t TransactionType) (driver.Tx, error)

type TransactionType int

const (
  Deferred TransactionType = iota
  Immediate
  Exclusive
)

Relevant SO post: https://stackoverflow.com/questions/42657639/begin-immediate-in-sqlx-or-database-sql-golang

Contributor Guide