博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sybase分页查询(自己用,不适合其它人)
阅读量:6600 次
发布时间:2019-06-24

本文共 1076 字,大约阅读时间需要 3 分钟。

hot3.png

$fcc172= new FC_SQL_ALL("172","BL");        $sql = "select dsphh,dspmc,dsppp,dspgg,dlsj from sp_xxhz where dshh='900002' and isvalid='01' and djyzt='01' and xjbz='01'";        if(isset($this->queryString['type'])){            $sql.= " and dsphh ='".$keywords."' ";        }else{            $sql.= " and dkey like '%".$keywords."%' ";        }        $sql.= ' order by dsppp';        $totalQuery = new FC_SQL_ALL('172','BL');        $totalQuery->query($sql);        $data['total'] = $totalQuery->num_rows();        $totalQuery->close();        $fcc172->cursor_query("xxxx",$sql,$pagesize,$page);        while($fcc172->next_record()){            $data['rows'][] = array(                'dsphh'     =>$fcc172->f(0),                'dspmc'     =>iconv('gb2312','utf-8',$fcc172->f(1)),                'dsppp'     =>iconv('gb2312','utf-8',$fcc172->f(2)),                'dspgg'     =>iconv('gb2312','utf-8',$fcc172->f(3)),                'dlsj'      =>$fcc172->fnum(4)            );        }        $fcc172->cursor_close("xxxx");

转载于:https://my.oschina.net/phperchenlong/blog/284120

你可能感兴趣的文章
48.4. .htaccess
查看>>
(二)第十三回:无意听课醍醐灌顶 血战哲理分心误事【林大帅作品】
查看>>
行链接(Row Chaining)和行迁移(Row Migration)
查看>>
Android 6.0 permission 权限适配
查看>>
Wordpress中文章的特色图像Featured Image究竟存在哪里?
查看>>
winform系统自动登录实现
查看>>
MYSQL和INNODB分层实现
查看>>
设计模式——20状态模式(State)
查看>>
[20150225]Delayed Block Cleanout.txt
查看>>
Oracle 内部2,8,10,16进制转换函数包
查看>>
Linux 系统日常管理
查看>>
Facade(外观)模式
查看>>
Python实战:决战虚拟货币市场
查看>>
Oracle AWR管理与维护
查看>>
【具体数学 读书笔记】1.2 Lines in the Plane
查看>>
XSS分析及预防(转)
查看>>
在网页中插入百度地图(实例)
查看>>
Nginx搭建反向代理服务器过程详解(转)
查看>>
如何识别SQL Server中的IO瓶颈
查看>>
Dom4j和Xpath(转)
查看>>