type github.com/jackc/pgx/v4.dbTx
15 uses
github.com/jackc/pgx/v4 (current package)
tx.go#L85: return &dbTx{conn: c}, nil
tx.go#L167: type dbTx struct {
tx.go#L175: func (tx *dbTx) Begin(ctx context.Context) (Tx, error) {
tx.go#L189: func (tx *dbTx) BeginFunc(ctx context.Context, f func(Tx) error) (err error) {
tx.go#L216: func (tx *dbTx) Commit(ctx context.Context) error {
tx.go#L240: func (tx *dbTx) Rollback(ctx context.Context) error {
tx.go#L257: func (tx *dbTx) Exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) {
tx.go#L262: func (tx *dbTx) Prepare(ctx context.Context, name, sql string) (*pgconn.StatementDescription, error) {
tx.go#L271: func (tx *dbTx) Query(ctx context.Context, sql string, args ...interface{}) (Rows, error) {
tx.go#L282: func (tx *dbTx) QueryRow(ctx context.Context, sql string, args ...interface{}) Row {
tx.go#L288: func (tx *dbTx) QueryFunc(ctx context.Context, sql string, args []interface{}, scans []interface{}, f func(QueryFuncRow) error) (pgconn.CommandTag, error) {
tx.go#L297: func (tx *dbTx) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
tx.go#L306: func (tx *dbTx) SendBatch(ctx context.Context, b *Batch) BatchResults {
tx.go#L315: func (tx *dbTx) LargeObjects() LargeObjects {
tx.go#L319: func (tx *dbTx) Conn() *Conn {
 |
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. |