DbiEndLinkMode

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

DbiEndLinkMode

Return to chapter overview

C syntax

DBIResult DBIFN DbiEndLinkMode (phCursor);

Delphi syntax

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

Description

DbiEndLinkMode takes cursor out of Link mode, and returns a new cursor handle.

Parameters

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

Prerequisites

A previous call to DbiBeginLinkMode must have been made. DbiUnlinkDetail should be called to unlink the cursor before DbiEndLinkMode is called.

Usage

DbiEndLinkMode takes a cursor out of Link mode. For example, if a detail cursor is taken out of link mode, it is no longer constrained by the master cursor.

Warning:        The cursor handle passed in as input can no longer be used.

DbiResult

Meaning

DBIERR_NONE

Linked cursor mode was successfully ended.

See also

DbiBeginLinkMode, DbiLinkDetail, DbiUnlinkDetail