Click or drag to resize

DbServer.Append Method (Logic)

X#
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:  XSharp.VO.SDK
Assembly:  XSharp.VORDDClasses (in XSharp.VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Append(
	lReleaseLocks AS LOGIC
) AS LOGIC
Request Example View Source

Parameters

lReleaseLocks
Type: Logic
Indicates if existing record locks should be released.

Return Value

Type: Logic
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