DbiEndDelayedUpdates

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

DbiEndDelayedUpdates

Return to chapter overview

C syntax

DBIResult DBIFN DbiEndDelayedUpdates(phCursor);

Delphi syntax

function DbiEndDelayedUpdates (var hCursor: hDBICur): DBIResult stdcall;

Description

DbiEndDelayedUpdates takes the cursor out of cached updates mode, and returns a new cursor handle.

Parameters

phCursor                Type: phDBICur                (Input/Output)
Specifies the cached updates cursor handle and returns a new cursor handle.

Usage

Use DbiEndDelayedUpdates to terminate the cached updates mode.

Prerequisites

A call to DbiBeginDelayedUpdates must have been made.

Completion state

If this function is called while cached updates are pending, all changes are discarded.

DbiResult

Meaning

DBIERR_NONE

The cached updates mode was ended and a standard cursor handle was successfully created.

See also

DbiBeginDelayedUpdates, DbiApplyDelayedUpdates, Cached Updates