Replacement for PEAR: MDB2 on PHP 5.3

前端 未结 7 985
隐瞒了意图╮
隐瞒了意图╮ 2021-01-04 13:27

I\'ve been using pear packages in php for years. I\'m in the process of upgrading/moving a sites that uses the MDB2 pear package and it has not been updated for PHP 5.3.X.<

相关标签:
7条回答
  • 2021-01-04 13:29

    I would definitly go for an ORM, at least if you are working on a big project, for which you don't want to use mysqli_* or PDO functions/methods directly -- Doctrine being the most developped/used, nowadays (It's the default ORM of the symfony Framework, and can be integrated in Zend Framework quite easily).

    About the E_DEPRECATED errors, though : PHP 5.3 is quite young, and lots of libraries/software/projects have not been adapted yet -- you'll probably have lots of those in the next couple of months :-(

    0 讨论(0)
  • 2021-01-04 13:31

    You can use Zend Framework database support or use an ORM like Doctrine or Propel

    0 讨论(0)
  • 2021-01-04 13:34

    You can also upgrade to the beta 3 version via the command line

    pear upgrade MDB2-beta
    pear upgrade MDB2_Driver_Mysql-beta
    

    Explanation of why current stable version isn't compliant with strict error reporting: http://pear.php.net/bugs/bug.php?id=9756

    Source for the command:
    http://pear.php.net/bugs/bug.php?id=18050

    0 讨论(0)
  • 2021-01-04 13:34

    I got around all the deprecated errors and warnings, using MDB2 and PHP 5.3, but I've gotten some really weird errors on MDB2, so wondering what's up under the hood. My environment is CentOS, PHP 5.3, MDB2-2.4.1, MySQL 5.0.77

    Anytime, I use autoExecute 2x in a php file, the 2nd is failing (same goes if I try to use prepare and then execute). I've been logging to my MySQL query log, and while a successful INSERT will show the values, a failed INSERT will always have only the placeholders. ie: values(?, ?, ?, ?). And the MDB2_Error will always mention RECURSION

    lastInsertID() never worked with MySQL tables and autoincrement fields (with mysqli driver) I did enough debugging on it, going deep into the call stack, and the result get's so wrapped up in Objects, that you can't tell what it is, until the very end. I'd love to be using MDB2 more, but in fact, I've had to revert back to straight mysql, numerous times because of these issues. Maybe Lucas or other developers might shed some light on this subject, or point us in the right direction.

    0 讨论(0)
  • 2021-01-04 13:34

    If you only use MDB2 for MySQL, you can replace it and keep majority of the functions with MDBDid: http://azure-dev.kiao.net/648-mdb2 You will only have little code to adapt.

    0 讨论(0)
  • 2021-01-04 13:39

    I just went and downloaded the latest version of MDB2 (MDB2-2.5.0b3) from here http://pear.php.net/package/MDB2/download and it has got rid of all my errors. Seems to work fine with PHP Version 5.3.5

    0 讨论(0)
提交回复
热议问题