We have an app here that has been in development (and now in production) for more than a year. Which has in total over 500 mysql_* calls.
Is it worth it to switch all of the mysql_* in the code to mysqli_*
Is it worth chasing all the bugs that might (and most probably will) come about?
I see from questions like this: Changing this from MySQL to MySQLi? that just adding i after every mysql* call can lead me to alot of errors. Is it worth my time?
mysql_* will probably around for the long haul (even amongst rumors of deprecation), so it it really worth any programmers time to methodically switch over?