Click or drag to resize

CoreDb.OrderInfo Method (DWord, String, Object, Object)

X#
Return information about index files and the orders in them.

Namespace:  XSharp
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 STATIC METHOD OrderInfo(
	nOrdinal AS DWORD,
	cBagName AS STRING,
	oOrder AS Object,
	oValue AS Object
) AS LOGIC
Request Example View Source

Parameters

nOrdinal
Type: DWord
Specifies the type of information. This must match the values in the DBOI_ defines
cBagName
Type: String
The name of an index file, including an optional drive and directory.
oOrder
Type: Object
The name of the order about which you want to obtain information or a number representing its position in the order list.
oValue
Type: Object
If specified, this parameter is used to change the value of a setting.

Return Value

Type: Logic
TRUE if successful; otherwise, FALSE.
Remarks
This function is like DbOrderInfo() but strongly typed.

This function, however, does not call the error handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.

The LastRddError property in the runtimestate will contain needed information about any error that occurs.
See Also