Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
740 views
in Q2A Core by
With the mysql extension soon to be deprecated I would like to know whether there is an easy way to use mysqli or PDO without a major rewrite.

3 Answers

0 votes
by
The structural is pretty much the same. But again it might require some changes of course.
0 votes
by

If you are talking about Q2A Core than I believe you don't have to worry about that. Gideon and other developer will take care of it..

However if you want to use it for your plugin or custom development, Than you should use system functions for databaswe  but if you have to use mysql functions than I would suggest you to start to use PDO or mysqli so in futrue mysql get deprecated than you don't have to make related changes.. :)

Now mysqli or PDO it is a bit subjective and depend what you want to do and till what limit.. Here is nice article you can go through http://net.tutsplus.com/tutorials/php/pdo-vs-mysqli-which-should-you-use/

+1 vote
by
edited by

That's a good point. BTW you can change to mysqli pretty easily: all the functions are the same but with mysqli_* instead of mysql_*. Hopefully for 1.6 Gideon can fix that.

In the meantime: all the database code is in the qa-db-* files, so you can easily open those yourself and do said replacement.

by
It's actually even simpler than that. All direct calls to mysql_* functions are in qa-db.php only, so it's just one file.
...