CoreDb.FieldPut Method | |
Set the value of a specified database field.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD FieldPut(
nPos AS DWORD,
xValue AS Object
) AS LOGIC
public static bool FieldPut(
uint nPos,
Object xValue
)
Request Example
View SourceParameters
- nPos
- Type: DWord
The 1 based position of the field in the database file structure for the current work area. - xValue
- Type: Object
The value to write to the field
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks
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