码迷,mamicode.com
首页 > 数据库 > 详细

ecmall 数据库操作

时间:2015-07-13 18:31:03      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

$model为实例化模型对象;

1.查询一条数据

//$id 主键值

$model->get_info($id);

 

2.查询多条数据  并分页

$page = $this->_get_page();
$datas = $model->find(array(
‘conditions‘ => ‘1=1‘ . $conditions,
‘limit‘ => $page[‘limit‘],
‘count‘ => true,
‘order‘ => ‘sort_order‘,
));

$this->_format_page($page);
$this->assign(‘page_info‘, $page);

 

3.统计数据条数

$count = $model->getCount();

 

ecmall 数据库操作

标签:

原文地址:http://www.cnblogs.com/swinm/p/4643407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!