type database/sql/driver.TxOptions
9 uses
database/sql/driver (current package)
driver.go#L267: type TxOptions struct {
driver.go#L286: BeginTx(ctx context.Context, opts TxOptions) (Tx, error)
database/sql
ctxutil.go#L99: dopts := driver.TxOptions{}
contrib.go.opencensus.io/integrations/ocsql
driver.go#L348: return c.BeginTx(context.TODO(), driver.TxOptions{})
driver.go#L384: func (c *ocConn) BeginTx(ctx context.Context, opts driver.TxOptions) (tx driver.Tx, err error) {
github.com/jackc/pgx/v4/stdlib
sql.go#L285: return c.BeginTx(context.Background(), driver.TxOptions{})
sql.go#L288: func (c *Conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
github.com/lib/pq
conn_go18.go#L46: func (cn *conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
golang.org/x/pkgsite/internal/database
driver.go#L85: func (c *wrapConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |