BCB中如何给Table减肥
用BCB举办多媒体数据库开拓时常会发明这样一个现象,当你把一笔记录从表中删除时,表档 巨细并没有相应减小。这样在举办多次插入删除之后,表文件就会越来越复杂。之所以会呈现这种现象,是因为TTable控件的 Delete Method并不真正从表中删除记录,而只是在记录前加上一个删除符号。在DBase和Foxpro顶用Pack语句对表举办压缩,但在TTable类中却没有相应的函数。其实在BDE的API函数中已经提供了DbiPackTable来对DBase或Foxpro表举办压缩,可是这个函数对Paradox的表不起浸染。要想给Paradox 表减肥得用DbiDoRestructure函数来完成,以下例程完成Pack Paradox表的成果。
//This function Pack the Paradox table. write by zodiac
void __fastcall TForm1::PackParadoxTable(hDBIDb hDB, AnsiString TblName)
{
//Paradox table use a quite different way to be packed than
//DBase or Foxpro table, it use the DBiDoRestructure not the
// DBiPackTable
DBIResult rslt;
CRTblDesc TblDesc;
//filled the structure CRTbiDesc with 0
memset((void *)&TblDesc,0,sizeof(CRTblDesc));
//copy the table name and type to the structure
lstrcpy(TblDesc.szTblName,TblName.c_str());
lstrcpy(TblDesc.szTblType,szPARADOX);
//set bPack to true to specify Pack Function
TblDesc.bPack=true;
//Pack the table
rslt=DbiDoRestructure(hDB,1,&TblDesc,NULL,NULL,NULL,false);
if(rslt!=DBIERR_NONE)
Application->MessageBox("不能压缩表","压缩数据表堕落",MB_ICONERROR);
}
留意,在Restructure之前,表必需处于封锁状态。以下例程挪用PackParadoxTable.
void __fastcall TForm1::PackTable(AnsiString table_name)
{
//Pack the table
TTable *temp_table=new TTable(Form1);
temp_table->DatabaseName="YourDatabaseAlias";
temp_table->TableName=table_name;
temp_table->Exclusive=true;
temp_table->Open();
//get the Database Handle
hDBIDb hDB=temp_table->DBHandle;
temp_table->Close();
PackParadoxTable(hDB,table_name);
temp_table->Close();
temp_table->Free();
}
对Foxpro和DBase的Pack拜见BDE API Help的DbiPackTable函数说明。