next up previous contents
Next: InsertRow Up: Row methods Previous: Row methods

AddRow

NAME AddRow

PROTOTYPE

#include "SSTable.h"

int SSTable::AddRow();

EXAMPLE

#include "SSTable.h"
#include "FileNavigator.h"

FileNavigator * pFileNavigator = NULL;
int objectIndex;

... // FileNavigator initialization

SSTable * pTable = new SSTable();
pTable->GetObject(objectIndex, pFileNavigator);
pTable->AddRow();
...
PURPOSE

AddRow appends a row to the table, but does not add data to the row yet. Use FillRow or a similar method to add data to the row.

RECEIVES

No Arguments  

RETURN VALUE

A negative value indicates an error or warning.

REMARKS

See also: InsertRow



Olivera Tosic
12/17/1999