Yii1.1中通过Sql查询进行的分页操作方法
程序员文章站
2024-03-13 14:46:27
控制器中方法:
public function actiontindex(){
$user = yii::app()->user;
$i...
控制器中方法:
public function actiontindex(){ $user = yii::app()->user; $id = $user->id; $connection=yii::app()->db; $sql= "sql查询语句"; $command = $connection->createcommand($sql)->queryall(); $pages = new cpagination(count($command)); $list = $connection->createcommand($sql." limit ".$pages->limit." offset ".$pages->offset."")->queryall(); $this->render('index',array( 'bonus' => $list, 'pages' => $pages, )); }
视图中显示为:
第一部分为查询的结果显示:
<table class="table table-bordered"> <thead> <tr> <th class="per10">公文类型</th> <th class="per50">公文标题</th> <th class="per15">当前步骤</th> <th class="per15">日期</th> </tr> </thead> <tbody> <?php if (isset($bonus)):?> <?php foreach ($bonus as $key=>$ad): ?> <tr> <td><?=$ad['typename'] ?></td> <td><?=$ad['doc_title'] ?></td> <td><?=$ad['taskname'] ?></td> <td><?=date("y-m-d h:i:s",$v['create_time']) ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table>
第二部分为分页的显示:
<?php $this->widget('clinkpager',array( 'header'=>'', 'firstpagelabel' => '首页', 'lastpagelabel' => '末页', 'prevpagelabel' => '上一页', 'nextpagelabel' => '下一页', 'pages' => $pages, 'maxbuttoncount'=>8, 'cssfile'=>false, 'htmloptions' =>array("class"=>"pagination"), 'selectedpagecssclass'=>"active" ) ); ?>
以上所述是小编给大家介绍的yii1.1中通过sql查询进行的分页操作,希望对大家有所帮助
上一篇: 在Java下利用log4j记录日志的方法
下一篇: MyBatis入门初体验之使用大全(2)
推荐阅读
-
Yii1.1中通过Sql查询进行的分页操作方法
-
Java的MyBatis框架中对数据库进行动态SQL查询的教程
-
Java的MyBatis框架中对数据库进行动态SQL查询的教程
-
Yii1.1中通过Sql查询进行的分页操作方法
-
写了一个PHP版本的MONGODB语法解析器,可以通过类似SQL的语法来进行查询,不知道有人需要不,分享一下吧
-
SQL行号排序和分页(SQL查询中插入行号 自定义分页的另类实现)
-
利用SQL Server 2008中的SSIS进行大规模的数据库查询操作
-
快速入门:使用Azure 数据 Studio进行连接和查询 Azure SQL 数据仓库中的数据
-
sql server中通过查询分析器实现数据库的备份与恢复方法分享
-
SQL行号排序和分页(SQL查询中插入行号 自定义分页的另类实现)