NewRow

Creates a new DataRow in the DataTable.

Syntax

SmartPointer<DataRow>	newRow() 

Results

Returns the new created DataRow

Example

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