VoDb.RecordInfo Method (DWord, Usual, Usual) | |
Retrieve information about a record.
Namespace:
XSharp
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax STATIC METHOD RecordInfo(
nOrdinal AS DWORD,
oRecID AS USUAL,
oValue REF USUAL
) AS LOGIC
public static bool RecordInfo(
uint nOrdinal,
Usual oRecID,
ref Usual oValue
)
Request Example
View SourceParameters
- nOrdinal
- Type: DWord
This must match one of the values from the DbRecordInfo Enum - oRecID
- Type: Usual
Some of the DbRecordInfo enum values require a record number - oValue
- Type: Usual
Some of the DbRecordInfo enum values require a new value.
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks Tip |
---|
The difference between VoDb.RecordInfo and CoreDb.RecordInfo is that VoDb.RecordInfo takes a USUAL parameter |
See Also