You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Binary representations for integers use network byte order (most significant byte first). For other data types consult the documentation or source code to learn about the binary representation. Keep in mind that binary representations for complex data types might change across server versions; the text format is usually the more portable choice.
Perhaps start with the core data types? Even just start with int? Can you mix/match text/binary in the same request with some fields being binary and others text?
The text was updated successfully, but these errors were encountered:
The format is a property of the connection so it's all or nothing. JDBC, etc. all use text as far as I know because the binary format is volatile and undocumented.
https://www.postgresql.org/docs/current/protocol-overview.html#PROTOCOL-FORMAT-CODES
Perhaps start with the core data types? Even just start with int? Can you mix/match text/binary in the same request with some fields being binary and others text?
The text was updated successfully, but these errors were encountered: