Tagged Questions

140
votes
16answers
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 ...
8
votes
6answers
456 views

Best php DAL (data abstraction layer) so far

What is the best PHP DAL(data abstraction layer) so far developed under any open source project which we could re-use with good faith. I am finding it hard to choose a DAL for my application that ...
3
votes
5answers
162 views

Why should I abstract my data layer?

OOP principles were difficult for me to grasp because for some reason I could never apply them to web development. As I developed more and more projects I started understanding how some parts of my ...
3
votes
1answer
350 views

Advantages of using Doctrine for PHP?

Just came across the Doctrine Project which has an Object Relational Mapper and a DB Abstraction Layer. What does Doctrine provide that other PHP abstraction layers don't? And what practical use can ...
2
votes
1answer
243 views

PHP SQL Query building engine

I'm looking for query building engine for PHP (not ORM!) which would satisfy some criteria specified below. Unfortunately, after looking into Doctrine, Propel, Adodb, Zend_Db, etc. I couldn't find any ...
2
votes
1answer
127 views

Database access abstraction classes

Currently, I have a database access class named DB, which uses PDO. I Then have a handful of sub-classes for accessing each table: Users Images Galleries Text Videos This was nice when I first ...
1
vote
2answers
42 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
1answer
128 views

Database abstraction for creating tables/views in PHP

I'm wondering if there is a solution for creating database models (tables and views) independend from the used DBMS. I'm using Zend Framework at the moment and the abstraction for the basic CRUD ...
0
votes
1answer
287 views

Is there a way of using PHP-ActiveRecord as symfony's ORM/abstraction layer?

I just discovered PHP-ActiveRecord not too long ago after struggling for nearly a month to write my own ORM (I'm hard headed like that) and I fell in love with it. I had looked at Doctrine and Propel ...
0
votes
1answer
219 views

Cross Database Table Joins in Drupal?

Is it possible to do cross database joins in drupal? Say you have two databases, drupal and old_data_source. You want to join drupal.node to old_data_source.page. db_set_active() can be called to ...
0
votes
4answers
428 views

How To Handle Communication Between the Domain and Database Layers?

I am fairly new to using separate layers for the business logic (Domain) and database access logic, but in the course of working things out I've come across a problem to which I still feel I haven't ...
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. ...