Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

virtual std::string Impala::Application::VideoExcel::TableDataSourceSqliteDb::GetTextDataByID ( std::string  column,
int  row 
) [inline, virtual]

Reimplemented from Impala::Application::VideoExcel::TableDataSource.

Definition at line 55 of file TableDataSourceSqliteDb.h.

References Impala::Application::VideoExcel::TableDataSource::OutOfBounds(), and RetrieveTextFromDb().

00056     {
00057         if (OutOfBounds(row))
00058             return "";
00059 
00060         if (column == "filename")
00061             return RetrieveTextFromDb("origfilename", row);
00062 
00063         if (column == "timestamp" || column == "width" || column == "height")
00064             return RetrieveTextFromDb(column, row);
00065 
00066         return "N/A";
00067     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:16:34 2011 for ImpalaSrc by  doxygen 1.5.1