deleteArr()

Purpose

For native Platform objects, this method moves the specified array of records to the Recycle Bin. This method increments the hits counter for each array element.

Note: For external objects (such as those mapped to external tables, to OpenEdge Service objects, or through a HDP connection), you can use the method, deleteRecords().

Syntax

deleteArr(string sessionId, LongArr ids);

Parameters

sessionId

A string containing the session ID obtained at log in.

ids

LongArr array of record ids to be deleted.

Output

None

Permissions Required

Delete permission for the requested object type.

Example

long[] ids = new long[] { 123456, 123457 };
binding.deleteArr(sessionId, new LongArr(ids));