vote up 0 vote down star

I am working on a project that is built on an extended version of the default PDO and PDOStatement classes and as such it uses PDO style named parameters instead of the "?" placeholder for variables.

However, the client is now requesting that we look into using a different driver because their version OS X Web Server apparently doesn't have the ability to install this driver easily. So is anyone aware of any other database abstraction libraries or database access drivers that I could easily extend with our current set of functionality that takes named parameters like PDO does?

flag

hmm that seems odd, are they using php4 or something? i thought php5 (with pdo compiled in) came default in os x server these days. – Owen Oct 6 '08 at 16:05
PDO is compiled in by default on PHP 5.1 and newer. – R. Bemrose Oct 6 '08 at 16:17
I found it odd too. I'm simply going off what the guys from Apple are telling our client. – Noah Goodrich Oct 6 '08 at 16:29

4 Answers

vote up 2 vote down check

PDO and ADODB both support prepared statements, but the API is not great. Most frameworks provide an abstraction to one of those.

I'm using Zend_Db from the Zend Framework and I highly recommend it. It has a select class for composing queries (which turn into prepared statements when queried against the database adapter), a table class for handling CRUD operations - which I use as a base for most of my models and much more.

Check it out here.

link|flag
I've actually built a custom abstraction layer that we're using but a lot of our custom framework mimics the approach taken by Zend so I had considered looking at the way Zend Framework mocked named parameters for the MySQL driver. – Noah Goodrich Oct 6 '08 at 16:30
vote up 0 vote down

I've used PEAR::MDB2 as well as PDO. MDB2's documentation is a little shaky, but once you get it all working its a dream to work with.

http://pear.php.net/package/MDB2

link|flag
vote up 0 vote down

I think Creole offers the requested features...but I didn't try it.

link|flag
vote up 0 vote down

ADODB supports prepared statements.

link|flag

Your Answer

Get an OpenID
or

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