Why does SQL Server keep throwing exceptions?
Posted
by Augusto Càzares
on Stack Overflow
See other posts from Stack Overflow
or by Augusto Càzares
Published on 2010-05-31T20:37:24Z
Indexed on
2010/05/31
21:13 UTC
Read the original article
Hit count: 268
I have my project in .NET that uses a database in SQL Server. I'm using Linq-to-SQL, sometimes when the project throws me an exception (Constraint) in a part of the project this same error keeps showing in other part of the project when I do another thing with the database. Like when I do an insertion and I had before an exception on delete the insertion throws me the delete exception, and it remains this way until I close and open again the project. My major problem is when this happen in my online project, this error in my project causes me problems in the project I'm testing online (I use the same database). I don't know if this exception is on the memory or something but its have been causing me a lot of headaches.
© Stack Overflow or respective owner