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
To be able to insert a value in an identity column (like an auto-increment column) you need to explicitly set IDENTITY_INSERT on that specific table to ON. Since turbodbc closes the statement handle after execute, this setting is not remembered, and a second execute that tries to insert will fail.
To be able to insert a value in an identity column (like an auto-increment column) you need to explicitly set IDENTITY_INSERT on that specific table to ON. Since turbodbc closes the statement handle after execute, this setting is not remembered, and a second execute that tries to insert will fail.
Related to #90
The text was updated successfully, but these errors were encountered: