如题

解决方案 »

  1.   

    注意,要把B.db全部添加导入到A.db中,不能覆盖原来已有的数据。
      

  2.   

    TBatchMove 能實現DELPHI有例子
      

  3.   

    select * from b.db into a.db
    运行这个sql就可以高定
      

  4.   

    把B.txt全部添加导入到A.db,又应该怎么办呢?
      

  5.   

    select * from b.db into a.db
      

  6.   

    同意 foreveryday007(有無數種方法可以浪費一天的時間…
    to cyh1898(老虎):用loadfromfile()
      

  7.   

    用insert into a 
    select * from b
    a和b的结构要相同!
      

  8.   

    proceudre freetime;
    var
      a,b:TTable;
    begin
        b:=TTable.create(nil);
        b.tablename:='b.txt';   //== 或什么都可以。您换个开心吧。^_^
        b.open;
        
        a:=TTable.create(nil);
        a.tablename:='a.db';
        a.open;
       
        //=======
         .
         .   循环添加。
         .
         //===
        
    end;
      

  9.   

    insert into a.db
    select * from b.db