Buffer Error

Hi Team,

I am writing a program to insert/update/delete records in db table. In this, I have defined 2-3 buffers for a table.
1) It is working fine in case of insert new records
2) It is working fine in case of update records
3) Working on to delete records in report mode
4) but giving below error while running to delete records in update. But records gets deleted.

"could not create buffer object for table ... 7334"

Please let me know what can be the reason for this?

Thank You
 

RealHeavyDude

Well-Known Member
You hardly provide any information. While some of us are pretty good at guessing, unless you reveal the part of the code that fails, I doubt that there are many people here that can support you.

If your problem comes of a memory leak than it might be even harder to pin down.

Heavy Regards, RealHeavyDude.
 
Looks like you are using static queries but not handling the deletion of object properly. As @RealHeavyDude mentioned looks like a memory leak issue. Is it possible for you to change the table names/field names and post the query? It may be easy for us to narrow down the issue.
 
Top