MVC connection, which one use MSQLi or PDO? [duplicate]

0

I'm starting to program a PHP MVC, what kind of connection is most recommended: MSQLi or PDO and why?

    
asked by anonymous 14.03.2016 / 21:16

1 answer

0

PDO supports 12 different database drivers and named parameters, loses performance in comparison to MySQL.

I recommend the PDO using Doctrine , for the sake of drive flexibility and compatibility;

Reference

    
14.03.2016 / 22:09