0){ $strRq .= " LIMIT :limit"; } $rqPrep = $this->_db->prepare($strRq); if ($intLimit > 0){ $rqPrep->bindValue(":limit", $intLimit, PDO::PARAM_INT); } $rqPrep->execute(); return $rqPrep->fetchAll(); } }