DbServer.Append Method (Usual) | |
Append a blank record to the table; this blank record becomes the current position and is ready for assignment of data values. The record is automatically locked if the Append() method returns TRUE.
Namespace:
VO
Assembly:
VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Append(
lReleaseLocks
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Append(
Usual lReleaseLocks = default
)
Request Example
View SourceParameters
- lReleaseLocks (Optional)
- Type: Usual
Indicates if existing record locks should be released.
Return Value
Type:
Usual
TRUE if successful; otherwise, FALSE.
Remarks
The default behavior is to release existing locks when a new record is appended.
If you want to prevent this, you need to pass a parameter with the value FALSE.
Sends a NotifyIntentToMove message before the operation.
Sends a NotifyAppend message, if successful.
See Also