Tagged Questions
138
votes
15answers
25k views
mysqli or PDO - what are the pros and cons?
In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever ...
1
vote
2answers
41 views
Does it make any sense to abstract database handling now that we have PDO?
I was playing around with creating a database abstraction class for learning purposes where you can create multiple connections to whatever databases you have drivers for by doing something like:
...
1
vote
4answers
1k views
Database abstraction class design question
I am in the process of designing a web app (really it's a hobby, I'm trying to teach myself design, and what better way is there than doing it :). Anyways, I was thinking about how I would deal with ...
1
vote
3answers
139 views
Database Abstraction & Factory Methods
I'm interested in learning more about design practices in PHP for Database Abstraction & Factory methods. For background, my site is a common-interest social networking community currently in ...
0
votes
4answers
604 views
What PHP / MySQL drivers or Database Abstraction Layers Support Prepared Statements?
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.
...