We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If database is case sensitivity executing with WithReseed = true will cause System.AggregateException -> Must declare the scalar variable "@sql".
WithReseed = true
System.AggregateException -> Must declare the scalar variable "@sql".
It's because there is no @sql variable in the case sensitivity world ;) if (@sql is not null) EXECUTE (@SQL)
@sql
if (@sql is not null) EXECUTE (@SQL)
The text was updated successfully, but these errors were encountered:
Siiiiigh collation strikes again!
Sorry, something went wrong.
No branches or pull requests
If database is case sensitivity executing with
WithReseed = true
will causeSystem.AggregateException -> Must declare the scalar variable "@sql".
It's because there is no
@sql
variable in the case sensitivity world ;)if (@sql is not null) EXECUTE (@SQL)
The text was updated successfully, but these errors were encountered: