At the execution of MySQL event by default it will executes query which is inside MySQL event.
I want to disable it to execute query at creation.
$this->db->insert("invoice", $data);
$last = $this->db->insert_id();
$str = $this->db->last_query();
$this->db->query("SET GLOBAL event_scheduler = 'OFF'");
$schedule = $this->db->query("CREATE EVENT Recurrence".$last." ON SCHEDULE EVERY 1 MONTH ON COMPLETION PRESERVE ENABLE DO $str");
$this->db->query("SET GLOBAL event_scheduler = 'ON'");