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)