I have a common include file in my php files that connects via mysql_connect to my DB.
I'm using the mysqli converter tool to finally make the jump to using mysqli instead of the deprecated mysql driver.
To minimize my downtime, is it safe to assume that I can run both a mysql AND a mysqli connection to the DB while I run the converter?
Thanks