CodeIgniter switching driver from mysql --> mysqli CodeIgniter switching driver from mysql --> mysqli codeigniter codeigniter

CodeIgniter switching driver from mysql --> mysqli


Are there certain queries that are treated differently?

No.

The MySQL and MySQLi extension are “drivers” that take care of the communication between PHP and the MySQL database server;

they do not change the range of SQL commands that the MySQL server understands.

So as long as the DB abstraction layer takes care of what PHP functions are to use for what purpose for you (and a framework like CI should most certainly do that), there is nothing to worry about in regard to the actual queries.