0

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?

Vaccano
  • 78,325
  • 149
  • 468
  • 850

2 Answers2

1

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.

Francesca
  • 21,452
  • 4
  • 49
  • 90
0

if you dont post they should be getting deleted

Jonathan D
  • 1,364
  • 2
  • 12
  • 30