我的查询类似
INSERT INTO tbl VALUES(UNHEX('some_value'));
如何使用codeigniter活动记录关闭此查询,特别是'$ this-> db-> set'功能
this->db->set('password', $value); // How do I insert the mysql function here
$this->db->insert('tbl');
答案 0 :(得分:4)
看一下documentation - 它说明如果你需要一些未转义的值,你应该将set()中的第三个参数设置为false。像这样:
$this->db->set("password", "UNHEX('".$value."')", FALSE);