使用 CI 框架的数据库构造器进行增删改查的代码示例

插入数据:
$data = array(
    'name' => 'John',
    'age' => 30
);
$this->db->insert('your_table', $data);


更新数据:
$data = array(
    'age' => 31);
$this->db->where('id', 1);
$this->db->update('your_table', $data);


删除数据:
$this->db->where('id', 1);$this->db->delete('your_table');


查询数据:
$query = $this->db->get('your_table');
foreach ($query->result() as $row) {
    // 处理查询结果}
}
有帮助(- 没帮助(-