protected function mk_entry($row)
 {
     if (is_null($row)) {
         return null;
     }
     $row = (array) $row;
     // Replace timestamps with DateTime objects
     foreach (array('created_at', 'updated_at') as $col) {
         $row[$col] = SimpleDateTime::fromGmtTimestamp($row[$col]);
     }
     return new CSM_JournalEntry($row);
 }