Tagged Questions

2
votes
2answers
35 views

Difference between Database Access layer and Database Abstraction Layer and refactoring the Database class

I just read up this article on nettuts. I got kinda confused. What's the difference between a Data Access Layer and a Database Abstraction Layer? Also, should I make my own customized classes for ...
1
vote
4answers
167 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 - ...