AddRow

Adds a DataRow to the DataTable.

Syntax

void addRow( SmartPointer<DataRow>	dataRow) 

Parameters

  • DataRow to be added to the DataTable

Example

SmartPointer<DataRow> newRow	= dataTable->newRow(); 
 newRow->set( 0 , "10535 Boyer"); 
 newRow->set( 1 , "Austin"); 
 newRow->set( 2 , "Texas"); 
 dataTable->addRow(newRow);