Add a child table to a join definition.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub addChild( _ 
   ByVal alias As String,  _ 
   ByVal table_name As String _ 
)
C#
public void addChild(
   string alias,
   string table_name
)
C++
public:
 void addChild(
   String alias,
   String table_name
) sealed 
J#
public void addChild(
   string alias,
   string table_name
)
JScript
public  function addChild(
   alias : String,
   table_name : String
)

Parameters

alias
Alias of the child table. Required if an alias has already been used in the NetricsJoin object, or if child table is used multiple times. This can't be used if a child table has already been added without an alias.
table_name
Name of the child table. Required.

See Also