Can't solve “Sqlparameter is already contained by another SqlparameterCollection”

后端 未结 2 1967
不思量自难忘°
不思量自难忘° 2021-01-23 07:22

I am using 2 threads (from same class) in a windows service. I always getting the same error message:

\"The SqlParameter is already contained by another SqlParam         


        
相关标签:
2条回答
  • 2021-01-23 08:13

    You are trying to add a SqlParameter to a SqlParameterCollection twice. This may or may not be happening across threads.

    If this is a multi-threading issue then all your variables should be scoped locally because, if they are not you should be implemeting sychronisation on thier access, probably with lock.

    If this is not a concurrency problem the issue should easily be identified by doing a Find All References on your SqlParameter variable.

    Either way we can help you more if you post some code.

    0 讨论(0)
  • 2021-01-23 08:14

    Dont share the same sql objects between 2 thread. Use the pool collection by SQL

    0 讨论(0)
提交回复
热议问题