VoDbFieldPutBytes Function | |
Set the value of a specified database field.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.21
Syntax FUNCTION VoDbFieldPutBytes(
wFieldPos AS DWORD,
uNewValue AS BYTE[]
) AS LOGIC
public static bool VoDbFieldPutBytes(
uint wFieldPos,
byte[] uNewValue
)
Request Example
View SourceParameters
- wFieldPos
- Type: DWord
The position of the field in the current database file. - uNewValue
- Type: Byte
The value to assign to the field.
The data type of this expression must match the data type of the designated field variable.
Return Value
Type:
Logic
TRUE if successful; otherwise, FALSE.
Remarks
VODBFieldPut() is like FieldPut() but is strongly typed. See FieldPut() for more information.
Examples
This example compares VODBFieldPut() to assign a value to the first field of a database:
1nField := 1
2
3VODBFieldPut(nField, "MyData")
4
5? FIELDNAME(1)
6City := "MyData"
See Also