DbServer.RecordInfo Method | |
Retrieve information about the indicated record.
Namespace:
VO
Assembly:
VORDDClasses (in VORDDClasses.dll) Version: 2.21
Syntax VIRTUAL METHOD RecordInfo(
kRecInfoType,
nRecordNumber,
uRecVal
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual RecordInfo(
Usual kRecInfoType = default,
Usual nRecordNumber = default,
Usual uRecVal = default
)
Request Example
View SourceParameters
- kRecInfoType (Optional)
- Type: Usual
The information retrieved depends on the constant specified
- nRecordNumber (Optional)
- Type: Usual
Indicates the record for which information is to be retrieved; if 0 or omitted, refers to the current record. - uRecVal (Optional)
- Type: Usual
This parameter is reserved for RDDs that allow you to change the information rather than just retrieve it. None of the supplied RDDs (as outlined in the 'RDD Specifics' appendix in the Programmer's Guide) support this argument. Either omit the argument or specify it as NIL.
Return Value
Type:
Usual
The data type of the return value depends on the value requested.
Remarks Constant | Returned Value |
---|
DBRI_BUFFPTR
| Pointer to current record buffer |
DBRI_DELETED
| Is record deleted? |
DBRI_DELETED | Is record deleted? |
DBRI_RECSIZE
|
Record length.
|
DBRI_LOCKED |
Is record locked?
|
DBRI_RECNO | Record position (like the RecNo access). |
Tip |
---|
DBRI_USER is a constant that returns the minimum value that third-party RDD developers can use for customizations.
Values less than DBRI_USER are reserved for X# development.
|
See Also