vote up 2 vote down star

What are the advantages of using MySQLi over MySQL?

flag

74% accept rate
1  
You should consider PDO instead, since the plan is to "make PDO the primary supported DB interface". wiki.php.net/summits/pdmnotesmay09 – GZipp Oct 15 at 10:21

3 Answers

vote up 9 vote down check

See the docs:

What is PHP's mysqli Extension?

The mysqli extension, or as it is sometimes known, the MySQL improved extension, was developed to take advantage of new features found in MySQL systems versions 4.1.3 and newer. The mysqli extension is included with PHP versions 5 and later.

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
link|flag
2  
You're playing with fire if you're not using prepared statements, you only need to get hacked a couple of times to realize that! – Ali Jul 23 at 12:38
2  
@Ali: a couple of times? – geowa4 Jul 23 at 12:57
vote up 1 vote down

PHP Manual explains the differences

link|flag
vote up 0 vote down

mysqli looks more uglier that mysql

link|flag

Your Answer

Get an OpenID
or

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