type database/sql/driver.Tx

16 uses

	database/sql/driver (current package)
		driver.go#L247: 	Begin() (Tx, error)
		driver.go#L286: 	BeginTx(ctx context.Context, opts TxOptions) (Tx, error)
		driver.go#L510: type Tx interface {

	database/sql
		ctxutil.go#L97: func ctxDriverBegin(ctx context.Context, opts *TxOptions, ci driver.Conn) (driver.Tx, error) {
		sql.go#L1761: 	var txi driver.Tx
		sql.go#L2034: 	txi driver.Tx

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L347: func (c *ocConn) Begin() (driver.Tx, error) {
		driver.go#L384: func (c *ocConn) BeginTx(ctx context.Context, opts driver.TxOptions) (tx driver.Tx, err error) {
		driver.go#L797: 	parent  driver.Tx

	github.com/jackc/pgx/v4/stdlib
		sql.go#L284: func (c *Conn) Begin() (driver.Tx, error) {
		sql.go#L288: func (c *Conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {

	github.com/lib/pq
		conn.go#L506: func (cn *conn) Begin() (_ driver.Tx, err error) {
		conn.go#L510: func (cn *conn) begin(mode string) (_ driver.Tx, err error) {
		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#L71: func (c *wrapConn) Begin() (driver.Tx, error)                 { return nil, errors.New("unimplmented") }
		driver.go#L85: func (c *wrapConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {