Used to load a NetricsTable into the server.


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

Syntax

Visual Basic (Declaration)
Public Function tblload( _ 
   ByVal tbl As NetricsTable,  _ 
   ByVal doMaxWork As Boolean _ 
) As NetricsTableStats
C#
public NetricsTableStats tblload(
   NetricsTable tbl,
   bool doMaxWork
)
C++
public:
 NetricsTableStats tblload(
   NetricsTable tbl,
   bool doMaxWork
) sealed 
J#
public NetricsTableStats tblload(
   NetricsTable tbl,
   bool doMaxWork
)
JScript
public  function tblload(
   tbl : NetricsTable,
   doMaxWork : bool
) : NetricsTableStats

Parameters

tbl
The table to be loaded
doMaxWork
process as many records as possible, ignoring those with errors.

Return Value

The statistics for the table just loaded

Exceptions

Exception TypeCondition
NetricsExceptionIf the server indicates that an error has occured (Possible errors - ARRAYLEN, TBLEXISTS, TBLPARAM, RECEXISTS, CHARMAP, DUPFIELDNAMES, EXPECTTBLDESC, EXPECTLIST, EXPECTRECORD, FEATURESET, FIELDLENSUM, NOTBLDESC, NORECKEY, NOSRCHTXT, NUMFIELDS, PARAMCONFLICT, PARAMVAL, SHUTDOWN)

See Also