github.com/jackc/pgx/v5.Conn.Exec (method, view implemented interface methods)
7 uses
github.com/jackc/pgx/v5 (current package)
conn.go#L472: func (c *Conn) Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) {
tx.go#L101: _, err := c.Exec(ctx, txOptions.beginSQL())
tx.go#L171: _, err := tx.conn.Exec(ctx, "savepoint sp_"+strconv.FormatInt(tx.savepointNum, 10))
tx.go#L190: commandTag, err := tx.conn.Exec(ctx, commandSQL)
tx.go#L214: _, err := tx.conn.Exec(ctx, "rollback")
tx.go#L231: return tx.conn.Exec(ctx, sql, arguments...)
github.com/jackc/pgx/v5/pgxpool
conn.go#L87: return c.Conn().Exec(ctx, sql, arguments...)