Available Operations

This table describes the Table I/O features and the operations that you can perform:

Operation

Description

FetchSingle

Combines the Select and Fetch options in a basic operation. Indexed columns are used for the Select, and non-indexed columns are used for the Fetch. The operation opens a table for input or output but does not close it. All tables that do not use handles close automatically when the form that uses them is closed.

Insert

Inserts a new row.

Update

Updates an existing row. Only those columns mapped (presently in tables with or without handles) are updated. You can do partial key updates with tables and handles to tables. If you do not specify all the keys, then several records might be updated.

Delete

Deletes one or more rows in a table.

Open

Opens a table or business view.

Close

Closes a table or business view.

Select

Selects one or more rows for a subsequent FetchNext operation.

SelectAll

Selects all rows for a subsequent FetchNext operation.

FetchNext

Fetches rows that you specify. You can fetch multiple records with multiple FetchNext operations or with a FetchNext operation in a loop.