System.ExecutionEngineException

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm getting the System.ExecutionEngineException from my data layer when I'm trying to Insert a duplicate row into the database using the ExecuteNonQuery method of command object. I'm using OLEDB connection in my application.I saw in the microsoft site saying that its an internal CLR error.So i tried reinstalling the whole .NET frame work and still of no use. Its highly appreciated if anyone can help me out in this

Thanks in advanc
 
This is the most extreme .NET exception you can get. It basically means that
somehow, somewhere the run-time is in a very unstable state and it needs to be
unloaded and restarted. Back before V1 released this would happen all of the
time with the .NET Terrarium and we had to send the debuggers down to find out
what the problem was.

I'm not sure exactly what can cause these exceptions, but a corrupted machine
(maybe your HD is going bad), bad memory, bad device drivers, poorly written
unsafe code. Lots of things can have an effect, but won't be the direct cause
(except maybe the memory issue).


--
Justin Rogers
DigiTec Web Consultants, LLC.
Blog: http://weblogs.asp.net/justin_rogers

ShijuFrancis said:
I'm getting the System.ExecutionEngineException from my data layer when I'm
trying to Insert a duplicate row into the database using the ExecuteNonQuery
method of command object. I'm using OLEDB connection in my application.I saw in
the microsoft site saying that its an internal CLR error.So i tried reinstalling
the whole .NET frame work and still of no use. Its highly appreciated if anyone
can help me out in this.
 
Back
Top