PDO MySQL Driver on Mac

后端 未结 2 999
醉梦人生
醉梦人生 2021-02-14 17:13

I have a mac with a custom PHP 5 install that built from about a year ago. I remember it took all Sunday and I had to compile about 20 times to get it right. The MySQL I have is

相关标签:
2条回答
  • 2021-02-14 18:10

    You're going to need to compile it by hand, instead of via PECL. You'll need to know where your MySQL install is. I don’t know about the Entropy packages, but the builds provided by MySQL (which I recommend) install into /usr/local/mysql.

    $ pecl download pdo_mysql
    $ tar xzf PDO_MYSQL-1.0.2.tgz
    $ cd PDO_MYSQL-1.0.2
    $ phpize
    $ ./configure --with-pdo-mysql=/usr/local/mysql
    $ make && sudo make install
    

    And that should get you to the point where you can configure it.

    0 讨论(0)
  • 2021-02-14 18:13

    FYI; the MySQL PDO driver is included in the php 5.2.9 and 5.3 builds from Marc Liyanage's entropy.ch

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