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
At the top of OracleGenerator.GenerateConstraints, a parameter is created for every constraint. However, if the constraint is an "IS NULL" constraint, the correct syntax is appended to the query string, but the parameter is kept around with a null value. When the command is then prepared and executed, Oracle throws error ORA-01036, "illegal variable name/number." I've fixed this on my end by checking for null before adding parameters in SqlQuery.SetConstraintParams. What used to be
At the top of OracleGenerator.GenerateConstraints, a parameter is created for every constraint. However, if the constraint is an "IS NULL" constraint, the correct syntax is appended to the query string, but the parameter is kept around with a null value. When the command is then prepared and executed, Oracle throws error ORA-01036, "illegal variable name/number." I've fixed this on my end by checking for null before adding parameters in SqlQuery.SetConstraintParams. What used to be
is now
The text was updated successfully, but these errors were encountered: