type database/sql.Tx

29 uses

	database/sql (current package)
		sql.go#L1842: func (db *DB) BeginTx(ctx context.Context, opts *TxOptions) (*Tx, error) {
		sql.go#L1843: 	var tx *Tx
		sql.go#L1864: func (db *DB) Begin() (*Tx, error) {
		sql.go#L1868: func (db *DB) begin(ctx context.Context, opts *TxOptions, strategy connReuseStrategy) (tx *Tx, err error) {
		sql.go#L1877: func (db *DB) beginDC(ctx context.Context, dc *driverConn, release func(error), opts *TxOptions) (tx *Tx, err error) {
		sql.go#L1894: 	tx = &Tx{
		sql.go#L2086: func (c *Conn) BeginTx(ctx context.Context, opts *TxOptions) (*Tx, error) {
		sql.go#L2142: type Tx struct {
		sql.go#L2186: func (tx *Tx) awaitDone() {
		sql.go#L2201: func (tx *Tx) isDone() bool {
		sql.go#L2212: func (tx *Tx) close(err error) {
		sql.go#L2222: func (tx *Tx) grabConn(ctx context.Context) (*driverConn, releaseConn, error) {
		sql.go#L2242: func (tx *Tx) txCtx() context.Context {
		sql.go#L2250: func (tx *Tx) closemuRUnlockRelease(error) {
		sql.go#L2255: func (tx *Tx) closePrepared() {
		sql.go#L2264: func (tx *Tx) Commit() error {
		sql.go#L2303: func (tx *Tx) rollback(discardConn bool) error {
		sql.go#L2335: func (tx *Tx) Rollback() error {
		sql.go#L2349: func (tx *Tx) PrepareContext(ctx context.Context, query string) (*Stmt, error) {
		sql.go#L2374: func (tx *Tx) Prepare(query string) (*Stmt, error) {
		sql.go#L2393: func (tx *Tx) StmtContext(ctx context.Context, stmt *Stmt) *Stmt {
		sql.go#L2480: func (tx *Tx) Stmt(stmt *Stmt) *Stmt {
		sql.go#L2486: func (tx *Tx) ExecContext(ctx context.Context, query string, args ...any) (Result, error) {
		sql.go#L2499: func (tx *Tx) Exec(query string, args ...any) (Result, error) {
		sql.go#L2504: func (tx *Tx) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
		sql.go#L2517: func (tx *Tx) Query(query string, args ...any) (*Rows, error) {
		sql.go#L2527: func (tx *Tx) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
		sql.go#L2541: func (tx *Tx) QueryRow(query string, args ...any) *Row {
		sql.go#L2565: 	_ stmtConnGrabber = &Tx{}