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
return ParameterDescription for all parameters needed by the statement
return a RowDescription describing the rows that will be returned during execution
In order to provide ParameterDescription we need Parse to be able to detect placeholders #122.
The RowDescription may require some level of planning to determine.
The Describe message (statement variant) specifies the name of an existing prepared statement (or an empty string for the unnamed prepared statement). The response is a ParameterDescription message describing the parameters needed by the statement, followed by a RowDescription message describing the rows that will be returned when the statement is eventually executed (or a NoData message if the statement will not return rows). ErrorResponse is issued if there is no such prepared statement. Note that since Bind has not yet been issued, the formats to be used for returned columns are not yet known to the backend; the format code fields in the RowDescription message will be zeroes in this case.
The text was updated successfully, but these errors were encountered:
In order to provide ParameterDescription we need
Parse
to be able to detect placeholders #122.The RowDescription may require some level of planning to determine.
postgres docs
The text was updated successfully, but these errors were encountered: