Tagged Questions
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 ...
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 - ...