public function UpdateEditCommentData(ModuleComment_EntityComment $oComment)
 {
     $sql = "UPDATE " . Config::Get('db.table.comment') . "\r\n        SET\r\n        comment_edit_count= ?d,\r\n        comment_edit_date=?\r\n        WHERE\r\n        comment_id = ?d\r\n        ";
     if ($this->oDb->query($sql, $oComment->getEditCount(), $oComment->getEditDate(), $oComment->getId()) !== false) {
         return true;
     }
     return false;
 }