Click or drag to resize

DbServer.Join Method (Typed)

X#
Join this DBServer object with another DBServer object and place the results in the file specified.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VORDDClasses (in XSharp.VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Join(
	oDBSource,
	oFSTarget,
	aFieldList,
	cbForBlock
) AS LOGIC CLIPPER
Request Example View Source

Parameters

oDBSource (Optional)
Type: Usual
The 'other' DBServer object to which this DBServer object is joined. It can be specified as a DBServer object, or as the alias of a table opened in a work area.
oFSTarget (Optional)
Type: Usual
A string or filespec object that specifies the file into which results of the join operation is placed.
aFieldList (Optional)
Type: Usual
An array of fields to be included in the join operation.
cbForBlock (Optional)
Type: Usual
The condition evaluated for each record in the scope; if TRUE, the record is included in the processing. It provides the same functionality as the FOR clause of record processing commands.

Return Value

Type: Logic
TRUE if successful; otherwise, FALSE (although some records still might have been processed).
Remarks
Sends a NotifyIntentToMove message before the operation.
Sends a NotifyRecordChange message, if successful.
See Also