views:

117

answers:

2

LEGACY ALERT - This is for Delphi 5 code. (I know it is super old. It is scheduled to be rewritten.... Some day.)

I am using the BDE and the TStoredProc object. When I call Close, this normally clears my dataset. However, I am seeing weird things happen so I thought I would ask this question.

If I have manually added rows to the dataset (i.e. via the Append method) then when I call close are they going to be deleted as well?

+1  A: 

Not sure with D5 and BDE, but I would say that you have to do an explicit Post to ensure the added record is actually stored.

François
A: 

if you dont post they should be getting deleted

Jonathan D