谢谢

解决方案 »

  1.   

    如果不用在程序中实现,那么用Delphi自带的Datapump就可以了.
    若要用程序实现,可以用一个Query和一个BDE类型的Table实现.
      先用Query查出所需表,再把Table1的tabletypy设为prardox
      再用Table1.batchMove(query1,batcopy)就行了
      

  2.   

    delphi的batchmove可以,实在不行,自己作一个循环嵌套,从头到位执行完就ok
      

  3.   

    如何使用delphi的batchmove,我不知道语句怎么写,再请指教!
      

  4.   

    我使用了下面语句,但不通过,
     query1.close;
     qeury1.sql.clear;
     query1.sql.add('select * from d:\db5.mdb');
     query1.open;
    Table1.batchMove(query1,batcopy);
      

  5.   

    Use a TBatchMove object to Add the records in a dataset to a database table.
    Delete the records in a dataset from a database table.
    Copy a dataset to create a new database table or overwrite an existing table.复制操作要求目的表是一个已经存在的!!!