FORALL in Delphi

Hi !

How to make forall with one result of dataset ?

Example:

FORALL i IN CLIENTDATASET
INSERT INTO test1 VALUES t_tab(i);

Anyone make this ?

I develop one application of transfer data of firebird to oracle !

[]'s

Ciro
 
You can access the field data from the client dataset, assign it to the variable values of a TOracleQuery with an appropriate insert statement, execute it, and progress to the next client dataset record.
 
Back
Top