SQLSelect.FIELDPUT Method | |
Assign a value to a column in a data server.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD FIELDPUT(
uFieldPos,
uValue
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public override Usual FIELDPUT(
Usual uFieldPos = default,
Usual uValue = default
)
Request Example
View SourceParameters
- uFieldPos (Optional)
- Type: Usual
The name, number, or symbol representing the desired column. - uValue (Optional)
- Type: Usual
The value to be assigned to the column. The data type of the value should match the data type of the column (refer to SQLSelect:FieldGet() for data types); if not, it is converted.
Return Value
Type:
Usual
The value assigned to the column if successful; otherwise, NIL.
Remarks
Sends a NotifyRecordChange message, if successful.
See Also