ISqlJetTable table = db.getTable("articles");
ISqlJetCursor cursor = table.order("published_article_index"/*table.getPrimaryKeyIndexName()*/);
long rowCount = cursor.getRowCount();
try
{
if( cursor.goToRow(index) == false )
{
return null;
}
// the front page name of this first article