Structure
PostgresMessage.ReadyForQuery
Identifies the message type. ReadyForQuery is sent whenever the backend is ready for a new query cycle.
struct ReadyForQuery
Topics
Instance Properties
var description: StringSeeCustomStringConvertible.var transactionStatus: UInt8Current backend transaction status indicator. Possible values are ‘I’ if idle (not in a transaction block); ‘T’ if in a transaction block; or ‘E’ if in a failed transaction block (queries will be rejected until block is ended).
Type Methods
static func parse(from: inout ByteBuffer) throws -> PostgresMessage.ReadyForQueryParses an instance of this message type from a byte buffer.
Relationships
Conforms To
Swift.CustomStringConvertible