github.com/jackc/pgx/v4.Conn.Exec (method)
10 uses
github.com/jackc/pgx/v4 (current package)
conn.go#L361: _, err := c.Exec(ctx, ";")
conn.go#L407: func (c *Conn) Exec(ctx context.Context, sql string, arguments ...interface{}) (pgconn.CommandTag, error) {
tx.go#L77: _, err := c.Exec(ctx, txOptions.beginSQL())
tx.go#L181: _, err := tx.conn.Exec(ctx, "savepoint sp_"+strconv.FormatInt(tx.savepointNum, 10))
tx.go#L221: commandTag, err := tx.conn.Exec(ctx, "commit")
tx.go#L245: _, err := tx.conn.Exec(ctx, "rollback")
tx.go#L258: return tx.conn.Exec(ctx, sql, arguments...)
github.com/jackc/pgx/v4/stdlib
sql.go#L332: commandTag, err := c.conn.Exec(ctx, query, args...)
golang.org/x/pkgsite/internal/database
copy.go#L48: _, err = conn.Exec(ctx, stmt)
copy.go#L65: ctag, err := conn.Exec(ctx, query)
 |
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. |