API Collection
Running Queries
Interact with the PostgreSQL database by running Queries.
Overview
You interact with the Postgres database by running SQL Queries.
PostgresQuery conforms to
Topics
PostgresQueryA Postgres SQL query that can be executed on a Postgres server. Contains the raw SQL string and bindings.PostgresBindingsPostgresRowPostgresRowrepresents a single table row that is received from the server for a query or a prepared statement. Its element type isPostgresCell.PostgresRowSequenceAn async sequence ofPostgresRows.PostgresColumnsA collection ofPostgresColumncolumn metadata for a PostgreSQL query result.PostgresColumnMetadata for a single column in a PostgreSQL query result.PostgresRandomAccessRowA random access row ofPostgresCells. Its initialization is O(n), where n is the number of columns in the row. All subsequent cell accesses are O(1).PostgresCellA representation of a cell value within aPostgresRowandPostgresRandomAccessRow.PostgresQueryMetadata
See Also
Essentials
PostgresClientA Postgres client that is backed by an underlying connection pool. UsePostgresClient.Configurationto change the client’s behavior.PostgresClient.ConfigurationPostgresConnectionA Postgres connection. Use it to run queries against a Postgres server.