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
The bindSqlValue function marshals all non-string values as strings, which results in type errors from the database server when e.g. passing an integer as a positional argument:
Implicit conversion from datatype 'CHAR' to 'INT' is not allowed.
A comment in the code already notes that the current marshalling is a hack.
The text was updated successfully, but these errors were encountered:
The bindSqlValue function marshals all non-string values as strings, which results in type errors from the database server when e.g. passing an integer as a positional argument:
A comment in the code already notes that the current marshalling is a hack.
The text was updated successfully, but these errors were encountered: