I have my query something like this
INSERT INTO tbl VALUES(UNHEX('some_value'));
How can I pull this query off using codeigniter active record, specifically the '$this->db->set' function
this->db->set('password', $value); // How do I insert the mysql function here
$this->db->insert('tbl');