Setting the Database Reserve Space

From InterBase

Go Up to Setting Database Properties Using InterBase Services


Use the SetReserveSpace method of the IBConfigService component to reserve space on the data page for versioning.

procedure TDBConfigForm.CheckBox3Click(Sender: TObject);
begin
  with IBConfigService1 do
  begin
    SetReserveSpace(True);
  end;
end;

Advance To: