FireDAC.Phys.IBBase.TFDIBConfig.SetReserveSpace

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
FireDAC.Phys.IBBase.pas
FireDAC.Phys.IBBase.hpp
Unit: FireDAC.Phys.IBBase
Parent: TFDIBConfig

Delphi

procedure SetReserveSpace(const AValue: TIBReserveSpace);

C++

void __fastcall SetReserveSpace(const Firedac::Phys::Ibwrapper::TIBReserveSpace AValue);

Description

Sets the data page reservation mode.

Use the SetReserveSpace method to configure the database data page reservation mode:

  • rsUseFull - to fill data pages when inserting new records
  • rsReserve - to reserve a space on each page for later record deltas

SetReserveSpace corresponds to gfix -use.

See Also