数据库查询方式:
~~~
1.application/config/database.php
$active_record = TRUE;
2.在配置文件中,配置表前缀后,会自动添加
$res=$this->db->get('表名');//返回结果集对象
$res->result();
~~~
在application/config/autoload.php上设置database自动连接:
`$autoload['libraries'] = array('database');`
___
~~~
//查询整个数据表
function show($data = 'message'){
$query = $this->db->get($table);
return $query;
}
~~~
在模拟代码的过程中,为减少涉及的文件引起的不确定性,可以在单个文件内引起database:
```
public function __construct()
{
parent::__construct();
$this->load->database();
$this->load->model('Target_model');
}
```