Savepoint API.

This commit is contained in:
Nuno Cruces
2023-03-08 16:29:29 +00:00
parent 5d6f92b733
commit 677f51bec1
5 changed files with 139 additions and 87 deletions

View File

@@ -189,7 +189,7 @@ func (c conn) ExecContext(ctx context.Context, query string, args []driver.Named
}, nil
}
func (c conn) Savepoint() (release func(*error)) {
func (c conn) Savepoint() sqlite3.Savepoint {
return c.conn.Savepoint()
}