Create and load a table from a server side CSV file.


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

Syntax

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

Parameters

tbl
Defines table to be loaded. Record source is ignored.
fileDef
Defines the name and format of the file Containing the records.

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, FILEFORMAT)

See Also