Source File
savepoint.go
Belonging Package
github.com/ncruces/go-sqlite3/driver
package driverimport ()// Savepoint establishes a new transaction savepoint.//// https://sqlite.org/lang_savepoint.htmlfunc ( *sql.Tx) sqlite3.Savepoint {var saveptCtx.ExecContext(&, "")return .Savepoint}// A saveptCtx is never canceled, has no values, and has no deadline.type saveptCtx struct{ sqlite3.Savepoint }func (*saveptCtx) () ( time.Time, bool) {// notestreturn}func (*saveptCtx) () <-chan struct{} {// notestreturn nil}func (*saveptCtx) () error {// notestreturn nil}func (*saveptCtx) ( any) any {// notestreturn nil}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |