OrdListClear Function | |
Remove orders from the order list in a work area and close associated index files.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION OrdListClear(
cIndexFile,
uOrder
) AS LOGIC CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public static bool OrdListClear(
Usual cIndexFile = default,
Usual uOrder = default
)
Request Example
View SourceParameters
- cIndexFile (Optional)
- Type: Usual
The name of an index file, including an optional drive and directory (no extension should be specified).
Use this argument with uOrder to remove ambiguity when there are two or more orders with the same name in different index files.
Use it alone to close only those orders associated with the specified file.
If cIndexFile is not open by the current process, a runtime error is raised.
- uOrder (Optional)
- Type: Usual
The name of the order to clear or a number representing its position in the order list.
Using the order name is the preferred method since the position may be difficult to determine using multiple-order index files.
If not specified, all orders in the specified index file (or the entire work area, if no index file is specified) are cleared.
Invalid values are ignored.
Return Value
Type:
Logic
TRUE if successful; otherwise FALSE.
Remarks
All pending updates are written to disk prior to closing the index files.
Once the files are closed and the order list cleared, the database file returns to its natural order.
By default, this function operates on the currently selected work area.
It can be made to operate on an unselected work area by specifying
it within an aliased expression
Examples
The following example closes index files if any are open:
1DBUseArea(TRUE, "DBFNTX", "sales", "Sales", ;
2 TRUE)
3Sales->DBSetIndex("FirstName")
4Sales->DBSetIndex("LastName")
5
6IF Sales->DBOrderInfo(DBOI_NUMBER) > 0
7 Sales->DBClearIndex()
8ENDIF
9
10COPY TO temp SDF
See Also