IBX.IBServices.TIBConfigService.SetAsyncMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetAsyncMode (Value: Boolean); deprecated 'For InterBase XE2 and up use SetWriteMode';

C++

void __fastcall SetAsyncMode _DEPRECATED_ATTRIBUTE1("For InterBase XE2 and up use SetWriteMode") (bool Value);

Properties

Type Visibility Source Unit Parent
procedure
function
public
IBX.IBServices.pas
IBX.IBServices.hpp
IBX.IBServices TIBConfigService

Description

Warning: SetAsyncMode is deprecated. Please use SetWriteMode.

Sets database writes to asynchronous mode.

Set SetAsyncMode to true to change the database write mode to asynchronous (buffered writes).

InterBase 6 allows you to write to databases in both synchronous and asynchronous modes. In synchronous mode, the database writes are forced. In asynchronous mode, the database writes are buffered.

For more information, refer to 'Forced writes vs. buffered writes' in the InterBase 6 Operations Guide.

Note: You must install InterBase 6 to use this feature.