Instance Method
query(_:logger:file:line:)
Run a query on the Postgres server the client is connected to.
@discardableResult func query(_ query: PostgresQuery, logger: Logger? = nil, file: String = #fileID, line: Int = #line) async throws -> PostgresRowSequence
Parameters
queryThe
PostgresQueryto runloggerThe
Loggerto log into for the queryfileThe file the query was started in. Used for better error reporting.
lineThe line the query was started in. Used for better error reporting.
Return Value
A PostgresRowSequence containing the rows the server sent as the query result. The sequence can be discarded.