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
With the change of #793, Jaybird will retrieve extended field info for more types of columns. As this can reduce performance, we should add a connection property to disable the retrieval of this extend field info for ResultSetMetaData. When disabled, ResultSetMetaData.getPrecision(int) will always return an estimated precision, and ResultSetMetaData.isAutoIncrement(int) will always return false. It will then not perform additional queries to retrieve information.
The default behaviour is enabled (retrieve extended field info).
The text was updated successfully, but these errors were encountered:
Includes:
#731 FBResultSetMetaData.getExtendedFieldInfo will query same set of fields when there are more than 70 fields
#732 Optimize FBResultSetMetaData.getExtendedFieldInfo
#793 Report true for ResultSetMetaData.isAutoIncrement for identity columns
#795 Add connection property to disable retrieval of extended field info for ResultSetMetaData
#795 Implement disabling of retrieval of extended field info for ResultSetMetaData
With the change of #793, Jaybird will retrieve extended field info for more types of columns. As this can reduce performance, we should add a connection property to disable the retrieval of this extend field info for
ResultSetMetaData
. When disabled,ResultSetMetaData.getPrecision(int)
will always return an estimated precision, andResultSetMetaData.isAutoIncrement(int)
will always returnfalse
. It will then not perform additional queries to retrieve information.The default behaviour is enabled (retrieve extended field info).
The text was updated successfully, but these errors were encountered: