Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I read here that using the old mysql-functions is not recommended anymore. But is it of any use to make the effort to update the code in an already finshed and running project so only mysqli-functionality is used?

What would be the benefits?
What security issues would be enhanced?

share|improve this question

migrated from dba.stackexchange.com Feb 3 at 0:54

2 Answers

The primary benefits you would gain from upgrading to the PHP mysqli extension are definitively listed on that page:

The mysqli extension has a number of benefits, the key enhancements over the mysql extension being:

  • Object-oriented interface
  • Support for Prepared Statements
  • Support for Multiple Statements
  • Support for Transactions
  • Enhanced debugging capabilities
  • Embedded server support

Security enhancements would generally not be discussed on public forums due to the potential for malicious individuals to use those security concerns on older, unpatched servers. Suffice to say that there are always improvements in new code, especially a driver called the MySQL improved extension.

share|improve this answer
I am curious, what are enhanced debugging capabilities you are talking about? – Your Common Sense Feb 3 at 7:44
1  
I read those list on that page, and thought, those benefits are all only while you program new stuff. If everything is already done and working, it seems none of those benefits fit to a finished project... that's, why I asked here. – rubo77 Feb 3 at 8:30
@rubo77 it is a huge boost to security to be using prepare rather than query in API calls as it pretty much eliminates possible human error in sanitisation – Hiroto Feb 3 at 11:27
Prepare sounds interesting. But then I would not only have to change the database calls in my abstraction layer, but also have to program some more logic to have e benefit from the prepare option? – rubo77 Feb 3 at 11:31
@YourCommonSense you probably didn't realize I did a straight cut-n-paste huh? – jcolebrand Feb 4 at 15:47
show 2 more comments

If you have you security all right in the current project, it wouldn't be enhanced then.
Though, it is extremely common habit of PHP users to confuse security measures, so, you have to double-check. Say, if you're using a home-brewed version of magic quotes, by escaping all input parameters - you're in danger. You need to audit the security despite of changing drivers though.
And you can achieve them without moving to mysqli, though.

As of benefits - there are none, compared to all the pains of rewriting.

If you're still in the mood of rewriting, I have a suggestion:
Instead of just rewriting from one raw API to another, let me suggest you to adopt some database abstraction library, moving raw API calls from all of your code into one compact place.
It will not only make your code dramatically shorter, but also will help in the future, when someone will have a whim to deprecate mysqli in turn - you will have to rewrite your class' methods only, not all the code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.