Home php教程 php手册 codeigniter数据库操作函数汇总

codeigniter数据库操作函数汇总

Jun 13, 2016 am 09:33 AM
codeigniter

网上倒是有不少Codeigniter数据库操作的介绍,这里做一个汇总。

复制代码 代码如下:

//查询:
$query = $this->db_query("SELECT * FROM table");
 ==================================

//result() 返回对象数组
$data = $query->result();

//result_array() 返回数据
$data = $query->result_array();

//row() 只返回一行对象数组
$data = $query->row();

//num_rows() 返回查询结果行数
$data = $query->num_rows();

//num_fields() 返回查询请求的字段个数
$data = $query->num_fields();

//row_array() 只返回一行数组
$data = $query->row_array();

//free_result() 释放当前查询所占用的内存并删除关联资源标识
$data = $query->free_result();

/*
 ==================================
 插入操作
 ==================================
*/

//上次插入操作生成的ID
echo $this->db->insert_id();

//写入和更新操作被影响的行数
echo $this->db->affected_rows();

//返回指定表的总行数
echo $this->db->count_all('table_name');

//输出当前的数据库版本号
echo $this->db->version();

//输出当前的数据库平台
echo $this->db->platform();

//返回最后运行的查询语句
echo $this->db->last_query();

//插入数据,被插入的数据会被自动转换和过滤,例如:
//$data = array('name' => $name, 'email' => $email, 'url' => $url);
$this->db->insert_string('table_name', $data);

/*
 ==================================
 更新操作
 ==================================
*/

//更新数据,被更新的数据会被自动转换和过滤,例如:
//$data = array('name' => $name, 'email' => $email, 'url' => $url);
//$where = "author_id = 1 AND status = 'active'";
$this->db->update_string('table_name', $data, $where);

/*
 ==================================
 选择数据
 ==================================
*/

//获取表的全部数据
$this->db->get('table_name');

//第二个参数为输出条数,第三个参数为开始位置
$this->db->get('table_name', 10, 20);

//获取数据,第一个参数为表名,第二个为获取条件,第三个为条数
$this->db->get_where('table_name', array('id'=>$id), $offset);

//select方式获取数据
$this->db->select('title, content, date');
$data = $this->db->get('table_name');

//获取字段的最大值,第二个参数为别名,相当于max(age) AS nianling
$this->db->select_max('age');
$this->db->select_max('age', 'nianling');

//获取字段的最小值
$this->db->select_min('age');
$this->db->select_min('age', 'nianling');

//获取字段的和
$this->db->select_sum('age');
$this->db->select_sum('age', 'nianling');

//自定义from表
$this->db->select('title', content, date');
$this->db->from('table_name');

//查询条件 WHERE name = 'Joe' AND title = "boss" AND status = 'active'
$this->db->where('name', $name);
$this->db->where('title', $title);
$this->db->where('status', $status);

//范围查询
$this->db->where_in('item1', 'item2');
$this->db->where_not_in('item1', 'item2');

//匹配,第三个参数为匹配模式 title LIKE '%match%'
$this->db->like('title', 'match', 'before/after/both');

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement custom middleware in CodeIgniter How to implement custom middleware in CodeIgniter Jul 29, 2023 am 10:53 AM

How to implement custom middleware in CodeIgniter

CodeIgniter middleware: Accelerate application responsiveness and page rendering CodeIgniter middleware: Accelerate application responsiveness and page rendering Jul 28, 2023 pm 06:51 PM

CodeIgniter middleware: Accelerate application responsiveness and page rendering

PHP development: Using CodeIgniter to implement MVC pattern and RESTful API PHP development: Using CodeIgniter to implement MVC pattern and RESTful API Jun 16, 2023 am 08:09 AM

PHP development: Using CodeIgniter to implement MVC pattern and RESTful API

How to use the database query builder (Query Builder) in the CodeIgniter framework How to use the database query builder (Query Builder) in the CodeIgniter framework Jul 28, 2023 pm 11:13 PM

How to use the database query builder (Query Builder) in the CodeIgniter framework

How to use CodeIgniter5 framework in php? How to use CodeIgniter5 framework in php? Jun 01, 2023 am 11:21 AM

How to use CodeIgniter5 framework in php?

CodeIgniter middleware: Provides secure file upload and download functions CodeIgniter middleware: Provides secure file upload and download functions Aug 01, 2023 pm 03:01 PM

CodeIgniter middleware: Provides secure file upload and download functions

How to use the PHP framework CodeIgniter to quickly build a backend management system How to use the PHP framework CodeIgniter to quickly build a backend management system Jun 27, 2023 am 09:46 AM

How to use the PHP framework CodeIgniter to quickly build a backend management system

Use PHP framework CodeIgniter to develop a real-time chat application to provide convenient communication services Use PHP framework CodeIgniter to develop a real-time chat application to provide convenient communication services Jun 27, 2023 pm 02:49 PM

Use PHP framework CodeIgniter to develop a real-time chat application to provide convenient communication services

See all articles