Here is the call stack:
The odd things is that I use the same kind of code elsewhere and it runs beautifully. There is something different about this BO's class. I am just not seeing it. I'll keep looking, but if anyone has some tips or tricks to share, I'd appreciate it.
Bill
_COMPlusExceptionCode = -532459699
Is this a child BO? I had a similar situation before where the child BO was not creating the new row, don't remember what I did , but can look at my project to refresh my memory if needed, so let me know if this is a child BO.
This is form google:
this error usally occurs when sql connection timeout or if the sql server is down.
i got the same error when i tried to access the webservice which is located in another webserver. (That webserver was down at that time).
Maybe you need to close VS and test again.
Yes.
The DB is accessible. I have closed and restarted VS several times. Other similar classes and BOs work just fine (all other applications are hitting the DB without issues). I'll take a closer look at the parent-child relationship.
Thanks!Bill
I am calling a child form from a listview, in the childform.Load() I did the following:
' Force the BO assignment here to fix a problem of the BO.Add() not working properly.Me.lstItemService.BusinessObject = Me.bizSC_AppliancesItems1
I don't know why was this happening and it was very difficult to reproduce in the sample application, so since this worked, I just leave it and moved on to new issues.