CoreDb.FieldPutBytes Method | |
Retrieve the value of a specified database field as an array of bytes
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD FieldPutBytes(
nPos AS DWORD,
aValue AS BYTE[]
) AS LOGIC
public static bool FieldPutBytes(
uint nPos,
byte[] aValue
)
Request Example
View SourceParameters
- nPos
- Type: DWord
The 1 based position of the field in the database file structure for the current work area. - aValue
- Type: Byte
The value to write to the field
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks This function only works with RDDs that inherit from the DBF RDD. The Advantage RDD does not support this.
See Also