90 |
|
begin |
91 |
|
Unidirectional := aUnidirectional; |
92 |
|
Active := true; |
93 |
+ |
PrintDataSet(FIBDataSet); |
94 |
|
writeln(Outfile,'Unidirectional caching = ',aUnidirectional); |
95 |
|
writeln(OutFile,'Simple Append i.e. caching of inserted records and cancel'); |
96 |
|
if aUnidirectional then Insert else Append; |
217 |
|
try |
218 |
|
ApplyUpdates; |
219 |
|
except on E: Exception do |
220 |
< |
writeln(OutFile,'Exception caught: ',E.Message); |
220 |
> |
begin |
221 |
> |
writeln(OutFile,'Exception caught: ',E.Message); |
222 |
> |
end; |
223 |
|
end; |
224 |
|
CancelUpdates; |
225 |
|
end; |