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

7 uses

	github.com/jackc/pgconn (current package)
		pgconn.go#L904: func (pgConn *PgConn) Exec(ctx context.Context, sql string) *MultiResultReader {

	github.com/jackc/pgconn/stmtcache
		lru.go#L118: 		return c.conn.Exec(ctx, fmt.Sprintf("deallocate %s", psd.Name)).Close()
		lru.go#L154: 		return c.conn.Exec(ctx, fmt.Sprintf("deallocate %s", psd.Name)).Close()

	github.com/jackc/pgx/v4
		conn.go#L299: 	_, err := c.pgConn.Exec(ctx, "deallocate "+quoteIdentifier(name)).ReadAll()
		conn.go#L479: 	mrr := c.pgConn.Exec(ctx, sql)
		conn.go#L601: 		mrr := c.pgConn.Exec(ctx, sql)
		conn.go#L743: 		mrr := c.pgConn.Exec(ctx, sb.String())