Layered as an employee management system, check the manual that corresponds to your MySQL server version What's this stuff?

Source: Internet
Author: User
Layered as an employee management system, check the manual that's corresponds to your MySQL server version what's wrong with that?
I use a hierarchy to do an employee management system, write to the employee paging there when there is such a hint: you have a error in your SQL syntax; Check the manual-corresponds to your MySQL server version for the right syntax-use-near ' 6 ' on line 1
I said I have never seen, where is the problem, how to modify it?


Require_once ' SqlHelper.class.php ';
Class empservice{
Set get $pagecount, how many pages are there
function Getpagecount ($pageSize) {
$sql = "SELECT count (ID) from EMP";
$sqlHelper =new sqlHelper ();
$res = $sqlHelper->execute_dql ($sql);
if ($row =mysql_fetch_row ($res)) {
$pageCount =ceil ($row [0]/$pageSize);
}
Mysql_free_result ($res);
Mysql_close ();
return $pageCount;
}
Set up employee information that should be displayed
function Getemplisebypage ($pageSize, $pageNow) {
$sql = "SELECT * from Limit". ($pageNow-1) * $pageSize. ", $pageSize";
$sqlHelper =new sqlHelper ();
$res = $sqlHelper->execute_dql ($sql);

Releasing Resources close connections
Mysql_free_result ($res);
$sqlHelper->close_connect ();
return $res;
}
}
?>

------Solution--------------------
PHP code
 $sql = "SELECT * from Limit". ( $pageNow-1) * $pageSize. ", $pageSize"; 
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.