找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 420|回复: 0
打印 上一主题 下一主题

一个odbc连mssql分页的类

[复制链接]

2617

主题

2617

帖子

7789

积分

论坛元老

Rank: 8Rank: 8

积分
7789
跳转到指定楼层
楼主
发表于 2018-2-14 09:46:34 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

            
cn=@odbc_connect($dsn,$user,$pass);
        if(!$this->cn){
            $error="连接数据库出错";
            $this->getMess($error);
        }
    }
    function getDo($sql){//从表中查询数据
        $this->d=@odbc_do($this->cn,$sql);
        if(!$this->d){
            $error="查询时发生了小错误......";
            $this->getMess($error);
        }
        return $this->d;
    }
    function getTotal($sql){
        $this->sql=$sql;
        $dT=$this->getDo($this->sql);        //求总数的游标
        $this->total=odbc_result($dT,'total');//这里为何不能$this->d呢?
        return $this->total;
    }
    function getList($sql,$onepage,$page){
        $this->s=$sql;
        $this->onepage=$onepage;
        $this->page=$page;
        $this->dList=$this->getDo($this->s);    //连接表的游标
        $this->pages=ceil($this->total/$this->onepage);
        if($this->pages==0)
            $this->pages++; //不能取到第0页
        if(!isset($this->page))
            $this->page=1;
        $this->fre = $this->page-1;                    //将显示的页数
        $this->nxt = $this->page+1;
        $this->nums=($this->page-1)*$this->onepage;
        //if($this->nums!=0){
        //    for($this->i=0;$this->igetNums();odbc_fetch_row($this->dd),$this->i++);//同上
        //}
        //$this->i=0;//为何这部分不能封装?
        return $this->dList;
    }
    function getFanye(){
        $str="";
        if($this->page!=1)
            $str.="[url=] 首页 [/url][url=]fre."> 前页 [/url]";
            else
                $str.="
首页 前页
";
        if($this->pagepages)
            $str.="[url=]nxt."> 后页 [/url]";
            else
                $str.="
后页
";
        if($this->page!=$this->pages)
            $str.="[url=]pages."> 尾页 [/url]";
            else
                $str.="
尾页
";
        $str.="共".$this->pages."页";
        $str.="您正浏览第
".$this->page."
页";
        return $str;
    }
    function getNums(){
        return $this->nums;
    }
    function getOnepage(){//每页实际条数
        return $this->onepage;
    }
    function getI(){
        return $this->i;
    }
    function getPage(){
        return $this->page;
    }
    function getMess($error){//定制消息
        echo"$error";
        exit;
    }
}
$pg=new Pages();
$pg->getConnect("lei","sa","star");
$pg->getTotal("select count(*) as total from xs");            //连学生表求总数
$pg->getList("select xs_name from xs order by xs_id",8,$page);
if($pg->getNums()!=0){
    for($i=0;$igetNums();odbc_fetch_row($pg->dList),$i++);//同上
}
$i=0;
while(odbc_fetch_row($pg->dList)){
    $name=odbc_result($pg->dList,"xs_name");
    echo $name."
";
    if($i==$pg->getOnepage()){//跳出循环
        break;
    }
    $i++;
}
echo$pg->getFanye();
?>
            
            
        
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

用户反馈
客户端