Skip to content

Structure

PostgresRow

PostgresRow represents a single table row that is received from the server for a query or a prepared statement. Its element type is PostgresCell.
struct PostgresRow

Mentioned in

Overview

Warning

Please note that random access to cells in a PostgresRow has O(n) time complexity. If you require random access to cells in O(1), create a new PostgresRandomAccessRow with the given row and access it instead.

Topics

Instance Properties

Instance Methods

Default Implementations

Relationships

Conforms To

  • Swift.Collection
  • Swift.Copyable
  • Swift.CustomStringConvertible
  • Swift.Equatable
  • Swift.Escapable
  • Swift.Sendable
  • Swift.SendableMetatype
  • Swift.Sequence

See Also