数据库记录为何删不干净?(50分)

  • 主题发起人 主题发起人 koala
  • 开始时间 开始时间
K

koala

Unregistered / Unconfirmed
GUEST, unregistred user!
我用的是dbase数据库,在我的程序中进行过table1.delete后,
再用foxpro看数据库时,发现删过的记录只是作了删除标记,并没有真正删除。
Ttable里有象Foxpro里Pack之类的打包命令吗?
 
table1.refresh
 
对不起,Table中没有方法Pack DBASE(或Paradox)数据表,不过在BDE API中有函数(DbiPackTable)可以pack DBASE(或Paradox)数据表,不过它的使用比较繁琐.
我们可以编写过程:procedure PackTable(Table:TTable);来简化.
// Pack a Paradox or dBASE table
// The table must be opened execlusively before calling this function...
procedure PackTable(Table: TTable);
var
Props: CURProps;
hDb: hDBIDb;
TableDesc: CRTblDesc;
begin
// Make sure the table is open exclusively so we can get the db handle...
if not Table.Active then
raise EDatabaseError.Create('Table must be opened to pack');
if not Table.Exclusive then

raise EDatabaseError.Create('Table must be opened exclusively to pack');

// Get the table properties to determine table type...
Check(DbiGetCursorProps(Table.Handle, Props));

// If the table is a Paradox table, you must call DbiDoRestructure...
if Props.szTableType = szPARADOX then begin
// Blank out the structure...
FillChar(TableDesc, sizeof(TableDesc), 0);
// Get the database handle from the table's cursor handle...

Check(DbiGetObjFromObj(hDBIObj(Table.Handle), objDATABASE, hDBIObj(hDb)));
// Put the table name in the table descriptor...
StrPCopy(TableDesc.szTblName, Table.TableName);
// Put the table type in the table descriptor...
StrPCopy(TableDesc.szTblType, Props.szTableType);
// Set the Pack option in the table descriptor to TRUE...
TableDesc.bPack := True;
// Close the table so the restructure can complete...
Table.Close;
// Call DbiDoRestructure...

Check(DbiDoRestructure(hDb, 1, @TableDesc, nil, nil, nil, False));
end
else
// If the table is a dBASE table, simply call DbiPackTable...
if (Props.szTableType = szDBASE) then
Check(DbiPackTable(Table.DBHandle, Table.Handle, nil, szDBASE, True))
else
// Pack only works on PAradox or dBASE; nothing else...
raise EDatabaseError.Create('Table must be either of Paradox or dBASE ' +

'type to pack');

Table.Open;

end;
 
仁兄可以试试以下:

Table1.Close
Table1.emptyTable;
Table1.Open
//emptytable之前要close table的呦
 
哦,对不起,没看清,上边写的是清空
DELETE之后,用POST可以的(分数还是给chenke吧)
 
bluebird兄,post我用过了的,不行!

xueyu兄的方法我再试试看,先谢了,各位!
 
delphi 4.0好象是真的删除,4.0里有table.pack方法!
 
编程的话只有通过bde的api方法。
手工的话可以用database desktop里修改库结构对话窗里的方法实现pack
(修改库结构对话窗中把pack table选上然后save即可)
 
1.用 PACK TABLE 的方法,详细见已答问题
2.用SQL
 
谢谢各位了!!!
 
后退
顶部