Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.09.23;
Скачать: CL | DM;

Вниз

упаковка базы   Найти похожие ветки 

 
Sergey V. Shadrin   (2002-09-03 14:47) [0]

изменяем foxPro"шную базу. как ее упаковать (удалить помеченные записи на удаление)?


 
NickBat ©   (2002-09-03 15:52) [1]

Надо использовать DbiPackTable вот пример (кажется даже из Хелпа):

procedure PackTable(Table: TTable);
var
Props: CURProps;
hDb: hDBIDb;
TableDesc: CRTblDesc;
begin
// Screen.Cursor:=crHourGlass;
// 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
begin
Table.Close;
Table.Exclusive:=True;
Table.Open;
end;
// 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("Тип базы не Paradox и не dBASE " +
"Упаковать невозможно!");
Table.Close;
Table.Exclusive:=False;
Table.Open;
// Screen.Cursor:=crDefault;
end;


 
Sergey V. Shadrin   (2002-09-04 07:35) [2]

Я спрашивал про фокспрошную базу. она не пакуется. как запаковать dbase и paradox знаю.



Страницы: 1 вся ветка

Текущий архив: 2002.09.23;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.011 c
1-73612
sdram
2002-09-12 11:52
2002.09.23
OnSetText


1-73708
Mars
2002-09-10 10:55
2002.09.23
Как отследить перемещение полосы прокрутки в RichEdit?


14-73849
Tiger
2002-08-26 23:52
2002.09.23
Запись CD


8-73778
indigo
2002-05-20 21:15
2002.09.23
images


6-73799
Valentain
2002-07-22 12:04
2002.09.23
ReceiveText или ReceiveBuf?