I get this
"db":{"DBDriver":"MySQLi","connID":{},"resultID":true,"protectIdentifiers":true,"escapeChar":"`","likeEscapeStr":" ESCAPE '%s' ","likeEscapeChar":"!","dataCache":[],"transEnabled":true,"transStrict":true,"deleteHack":true,"mysqli":{},"resultMode":0,"numberNative":false,"save_queries":true}}
after run this
$this->db->table($table)->set($set)->where('id', $id)->update();
return $this->db->getLastQuery();
I expect it to return this instead
"UPDATE `table` SET `f` = 'v' WHERE `id` = 'id'"
like the way they did with older better Codeigniter
return $this->db->last_query();