首先获取数据库对象;
1
|
$db=$this->load->database();<br>
//
多数据库情况
|
$db1 = $this->load->database('default',TRUE);//注意第一个参数:值与配置文件中的第一个索引对应
$db2 = $this->load->database('additional', TRUE);//注意第一个参数:值与配置文件中的第一个索引对应
1. 多结果标准查询
1
2
3
4
5
6
7
8
9
10
|
//
对象形式<br>$query = $this->db->query(
'SELECT name, title, email FROM my_table'
);
foreach ($query->result() as $row)
{
echo
$row->title;
echo
$row->name;
echo
$row->email;
}
echo
'Total Results: '
. $query->num_rows();
|
1
2
3
4
5
6
7
8
9
|
//数组形式
$query
=
$this
->db->query(
'SELECT name, title, email FROM my_table'
);
foreach
(
$query
->result_array()
as
$row
)
{
echo
$row
[
'title'
];
echo
$row
[
'name'
];
echo
$row
[
'email'
];
}
|
1
|
//上面所有的这些方法都会把所有的结果加载到内存里(预读取), 当处理大结果集时最好使用 unbuffered_row() 方法。
|
1
2
3
4
5
6
7
8
9
10
11
12
|
$query
=
$this
->db->query(
"YOUR QUERY"
);
while
(
$row
=
$query
->unbuffered_row())
{
echo
$row
->title;
echo
$row
->name;
echo
$row
->body;
}
$query
->unbuffered_row();
// object
$query
->unbuffered_row(
'object'
);
// object
$query
->unbuffered_row(
'array'
);
// associative array
|
1
|
|
2.单结果标准查询
1
2
3
|
//对象形式$query = $this->db->query('SELECT name FROM my_table LIMIT 1');
$row
=
$query
->row();
echo
$row
->name;
//数组形式$query = $this->db->query('SELECT name FROM my_table LIMIT 1');
|
$row = $query->row_array(); echo $row['name'];
1
2
3
4
5
6
7
|
//统计select 行数<br>$query = $this->db->query('SELECT * FROM my_table');
echo
$query
->num_rows();
/*
并不是所有的数据库驱动器都有原生的方法来获取查询结果的总行数。 当遇到这种情况时,所有的数据会被预读取到内存中,并调用 count() 函数 来取得总行数。
*/
|
1
2
3
4
|
//统计列数
$query
=
$this
->db->query(
'SELECT * FROM my_table'
);
echo
$query
->num_fields();
|
1
2
3
|
free_result() 方法
虽说php会自动回收内存,但是当有大量查询时可在执行途中释放内存提高效率。
|
$query->free_result(); // The $query result object will no longer be available
3.标准插入
1
|
尽管查询构造器会尽力保护好你输入的表名和字段名,但值得注意的是, 它并不是被设计来处理任意用户输入的,所以,请不要传未处理的数据给它。
|
1
2
3
|
$sql
=
"INSERT INTO mytable (title, name) VALUES ("
.
$this
->db->escape(
$title
).
", "
.
$this
->db->escape(
$name
).
")"
;
$this
->db->query(
$sql
);
echo
$this
->db->affected_rows();
|
1
2
3
4
5
6
7
|
$this
->db->insert_string()
这个方法简化了 INSERT 语句的书写,它返回一个正确格式化的 INSERT 语句。 举例:
$data
=
array
(
'name'
=>
$name
,
'email'
=>
$email
,
'url'
=>
$url
);
$str
=
$this
->db->insert_string(
'table_name'
,
$data
);
|
1
2
3
4
5
6
7
8
9
|
$this
->db->update_string()
这个方法简化了 UPDATE 语句的书写,它返回一个正确格式化的 UPDATE 语句。 举例:
$data
=
array
(
'name'
=>
$name
,
'email'
=>
$email
,
'url'
=>
$url
);
$where
=
"author_id = 1 AND status = 'active'"
;
$str
=
$this
->db->update_string(
'table_name'
,
$data
,
$where
);
|
4.查询绑定
1
2
|
$sql
=
"SELECT * FROM some_table WHERE id = ? AND status = ? AND author = ?"
;
$this
->db->query(
$sql
,
array
(3,
'live'
,
'Rick'
));
|
5.错误处理
1
2
3
4
|
if
( !
$this
->db->simple_query(
'SELECT `example_field` FROM `example_table`'
))
{
$error
=
$this
->db->error();
// Has keys 'code' and 'message'
}
|
6.查询构造
1
2
3
|
$this
->db->select(
'title, content, date'
);
$this
->db->from(
'mytable'
);
$query
=
$this
->db->get();
// Produces: SELECT title, content, date FROM mytable
|
1
2
3
4
5
6
7
8
9
|
foreach
(
$query
->result()
as
$row
)
{
echo
$row
->title;
}
//产生sql语句,可进行检查
$sql
=
$this
->db->get_compiled_select(
'mytable'
);
echo
$sql
;
|
1
|
$query
=
$this
->db->get_where(
'mytable'
,
array
(
'id'
=>
$id
),
$limit
,
$offset
);
|
1
2
3
4
5
|
//join操作
$this
->db->select(
'*'
);
$this
->db->from(
'blogs'
);
$this
->db->join(
'comments'
,
'comments.id = blogs.id'
);
$query
=
$this
->db->get();
|
1
2
3
4
5
6
7
8
9
10
11
|
where 操作
1.
$this
->db->where(
'name'
,
$name
);
// Produces: WHERE name = 'Joe'
2.
$array
=
array
(
'name'
=>
$name
,
'title'
=>
$title
,
'status'
=>
$status
);
$this
->db->where(
$array
);
3.
$where
=
"name='Joe' AND status='boss' OR status='active'"
;
$this
->db->where(
$where
);
|
1
2
3
|
//模糊
$this
->db->like(
'body'
,
'match'
);
// WHERE `title` LIKE '%match%' ESCAPE '!' AND `body` LIKE '%match% ESCAPE '!'
|
1
2
3
4
|
//模糊搜索
$this
->db->like(
'title'
,
'match'
,
'before'
);
// Produces: WHERE `title` LIKE '%match' ESCAPE '!'
$this
->db->like(
'title'
,
'match'
,
'after'
);
// Produces: WHERE `title` LIKE 'match%' ESCAPE '!'
$this
->db->like(
'title'
,
'match'
,
'both'
);
// Produces: WHERE `title` LIKE '%match%' ESCAPE '!'
|
1
2
3
|
//多重模糊查询
$this
->db->like(
'title'
,
'match'
);
$this
->db->or_like(
'body'
,
$match
);
// WHERE `title` LIKE '%match%' ESCAPE '!' OR `body` LIKE '%match%' ESCAPE '!'
|
1
2
|
//order_by
$this
->db->order_by(
'title'
,
'DESC'
);
|
1
2
|
//limit
$this
->db->limit(10, 20);
|
1
2
3
4
5
|
//返回结果行数
echo
$this
->db->count_all_results(
'my_table'
);
// Produces an integer, like 25
$this
->db->like(
'title'
,
'match'
);
$this
->db->from(
'my_table'
);
echo
$this
->db->count_all_results();
// Produces an integer, like 17
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
多重条件实例条件组必须要配对,确保每个 group_start() 方法都有一个 group_end() 方法与之配对。
$this
->db->select(
'*'
)->from(
'my_table'
)
->group_start()
->where(
'a'
,
'a'
)
->or_group_start()
->where(
'b'
,
'b'
)
->where(
'c'
,
'c'
)
->group_end()
->group_end()
->where(
'd'
,
'd'
)
->get();
// Generates:
// SELECT * FROM (`my_table`) WHERE ( `a` = 'a' OR ( `b` = 'b' AND `c` = 'c' ) ) AND `d` = 'd'
|