首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

BCB 安插大量数据到数据库时出现程序崩溃

2013-01-28 
BCB 插入大量数据到数据库时出现程序崩溃RT,数据量超过2w条时会有这种现象,直接死掉。每条记录插入的字段为

BCB 插入大量数据到数据库时出现程序崩溃
RT,数据量超过2w条时会有这种现象,直接死掉。每条记录插入的字段为38个。
执行步骤如下:

ADOQuery1->Close();
    ADOQuery1->SQL->Text = "alter table "+Trim(ComboBox1->Text)+" add id counter ";             
    try{ADOQuery1->ExecSQL();}
    catch(Exception& e){}
    ADOQuery1->Close();
    ADOQuery1->SQL->Text = "create  index ss on "+Trim(ComboBox1->Text)+"(id) ";              
    try{ADOQuery1->ExecSQL();}
    catch(Exception& e){}

    ADOQuery1->Close();
    ADOQuery1->SQL->Text = "select id from "+Trim(ComboBox1->Text);               
    try{ADOQuery1->Open();}
    catch(Exception& e)
    { }
    int recordCount = ADOQuery1->RecordCount;
    ProgressBar1->Max =  recordCount;

ADOQuery2->Close();
        ADOQuery2->SQL->Text =  "insert into dbo.NFavorites(userid,repid,cataid,inserttime,updatatime,seeable,dispOrder,doctypeNum,doctypeName,enterusername,checkusername,checkstate,checknote,"+tableStr+" fulltext,dxid,datatype,annexurl,imgurl,videourl,sufulltext) values(1,1,"+cataid+",'"+time+"','"+time+"',1,NULL,'"+num+"','"+name+"','"+user+"',NULL,'"+checkstate+"',NULL,"+valueStr+"'"+fulltext+"','"+dxid+"','0','"+annexurlVal+"','"+imgurlVal+"','"+videourlVal+"','"+sufulltextVal+"')" ;
        try{ADOQuery2->ExecSQL();}

那个高手给指点一下,我都快疯了
[解决办法]
sql  server数据库?
连续循环插入2w条记录?
你可以先生成Text文件是以逗号将每列分开的一列一行纯文本文件。

bulk insert dbo.Simple from 'C:"data.txt' with(fieldterminator=',', rowterminator='"n')


[解决办法]
循环中加这句,不知道会不会有作用
Application->ProcessMessages();

热点排行