grenzgaenger
Global Moderator
Full Member
    
Offline
Beiträge: 232
|
 |
« Antworten #1 am: 11.02.2009, 08:32:31 » |
|
hello isr123,
I think, this is not possible with stored procedures. read the tables which you want with a query or a tTable component and transfer the date to the other TADOConnection and insert them into the database ... has the table the same structure so you can use such kind of ..
t1.first while not t1.eof do begin t2.insert; for i := 0 to t1.fieldcount -1 do t2.fields := t1.fields; t2.post; t1.next; end;
<HTH> GG
|