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
At the moment identity columns are not ignored on using updater for mssql connection like
q = sess.SQL(). Update("user"). Set(user).Where("id = ?", 5) res, err = q.Exec()
This will lead to an error mssql: Cannot update identity column 'id'. because column "id" is included into update SQL query
mssql: Cannot update identity column 'id'.
UPDATE [user] SET ..., [id] = ?, ... WHERE (id = ?)
Is it possible to add an additional tag like omitupdate or something else to mark "id" column to be ignored?
omitupdate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment identity columns are not ignored on using updater for mssql connection like
This will lead to an error
mssql: Cannot update identity column 'id'.
because column "id" is included into update SQL queryIs it possible to add an additional tag like
omitupdate
or something else to mark "id" column to be ignored?The text was updated successfully, but these errors were encountered: