CodeIgniter Active Record:如何在mysql函数中使用“set”方法

时间:2011-06-23 11:00:29

标签: codeigniter activerecord

我的查询类似

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');

1 个答案:

答案 0 :(得分:4)

看一下documentation - 它说明如果你需要一些未转义的值,你应该将set()中的第三个参数设置为false。像这样:

$this->db->set("password", "UNHEX('".$value."')", FALSE);