Home

Getting Started

Utilities

Indexing

Omnidex

Development

Tutorials

Quick Links

 

OmniAccess API

Functions

Syntax

Options

Example

 

OmniAccess API

Programming Basics

Managing Data

Functions

 

OACLOSECURSOR

oaclosecursor terminates a cursor and releases memory associated with the cursor, depending how caching was set through oaconnect. Omnidex Client applications should always call oaclosecursor, when they are finished with a cursor, to free up the memory used by the cursor.

 

Syntax

oaclosecursor (cursor, options, status)

cursor -- Cursor is a 32-bit signed integer passed by value. This is the value returned by a successful call to oaopencursor.

options -- Options is currently reserved and must contain a semicolon or a null character passed by reference.

status -- Indicates the success or failure of the oaclosecursor routine. A zero in status word 1 indicates a successful oaclosecursor call. The status structure is passed by reference and contains fourteen 32-bit signed integers, followed by a 36-character buffer.

 

 

Options

There are currently no options available for oaclosecursor.

 

Example

 

Top