github.com/jackc/pgx/v5/pgconn.PgConn.Exec (method)

11 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		config.go#L948: 	result, err := pgConn.Exec(ctx, "show transaction_read_only").ReadAll()
		config.go#L963: 	result, err := pgConn.Exec(ctx, "show transaction_read_only").ReadAll()
		config.go#L978: 	result, err := pgConn.Exec(ctx, "select pg_is_in_recovery()").ReadAll()
		config.go#L993: 	result, err := pgConn.Exec(ctx, "select pg_is_in_recovery()").ReadAll()
		config.go#L1008: 	result, err := pgConn.Exec(ctx, "select pg_is_in_recovery()").ReadAll()
		pgconn.go#L1129: func (pgConn *PgConn) Exec(ctx context.Context, sql string) *MultiResultReader {
		pgconn.go#L2030: 	return pgConn.Exec(ctx, "-- ping").Close()

	github.com/jackc/pgx/v5
		conn.go#L405: 	_, err := c.pgConn.Exec(ctx, "deallocate all").ReadAll()
		conn.go#L588: 	mrr := c.pgConn.Exec(ctx, sql)
		conn.go#L864: 		mrr := c.pgConn.Exec(ctx, sql)
		conn.go#L1028: 	mrr := c.pgConn.Exec(ctx, sb.String())