3

Has anybody gotten PDO_mysql working on the default PHP installation on a mac? It works with MAMP but that's inconvenient.

I'm developing for Zend Framework and mysql, and Zend_db uses PDO. The default php doesn't come with PDO_mysql.

GoatRider
  • 201
  • 3
  • 8

1 Answers1

2

I didn't get it working with the default PHP on the Mac. I had to install both MySQL and PHP from macports.

PS: Zend_Db also has database adapters for PHP's ext/mysqli. Your choice. Zend_Db is not limited to PDO adapters.

Bill Karwin
  • 206
  • 1
  • 7
  • Ah, I guess if I'd read a bit further in the docs I would have figured out I can use mysqli. That seems like it should do the trick! – GoatRider Jun 01 '09 at 01:32