Subject | Re: [IBO] Prepared and unprepared |
---|---|
Author | Jason Wharton |
Post date | 2003-06-30T18:23:49Z |
We don't have that option. A refresh generally implies closing and reopening
the dataset.
Here's how I recommend such code be written.
Close;
ParamByName('BATCHNUM').AsInteger := Batch;
ParamByName('TERMID').AsString := TermID;
Open;
If you want to preserve the record pointer then save a bookmark off and
reset it.
Jason Wharton
the dataset.
Here's how I recommend such code be written.
Close;
ParamByName('BATCHNUM').AsInteger := Batch;
ParamByName('TERMID').AsString := TermID;
Open;
If you want to preserve the record pointer then save a bookmark off and
reset it.
Jason Wharton