Description
Basically what happens is you guys store the SqlCommand between all requests. The problem is, sometimes this prepared statement gets removed from the cache in SqlServer. When this happens all subsequent requests result in an error "Could not find prepared statement with handle -1"
You could resolve this by checking for that specific error on submitting and if you get it recreate the command and try again, or just recreate and prepare the statement every time.
This is a pretty major issue.
Attachments
Issue Links
- is related to
-
LOG4NET-538 AdoNetAppender to PostgreSQL
- Resolved
- relates to
-
LOG4NET-495 Error when BufferSize is >1, parameter already defined
- Closed
I think the AdoNetAppender needs a harsh cleanup and I am on it.