Tagged Questions

8
votes
6answers
454 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 ...
2
votes
1answer
242 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
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
5answers
105 views

MySQL: Fields length. Does it really matter?

I'm working with some database abstraction layers and most of them are using attributes like "String" which is VARCHAR 250 or INTEGER which has length of 11 digits. But for example I have something ...
1
vote
4answers
165 views

Database Abstraction - supporting multiple syntaxes

In a PHP project I'm working on we need to create some DAL extensions to support multiple database platforms. The main pitfall we have with this is that different platforms have different syntaxes - ...
0
votes
0answers
102 views

Best Practices for extensible online Database abstraction layer for Android/iOS application?

For Android (or iOS) application development, when you need to access information from a database that is hosted somewhere, like on a website, the common method is to create a page (a PHP page in my ...