19
votes
12answers
3k 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
3answers
131 views
What are good python libraries for the following needs?
What are good python libraries for the following needs:
MVC
Domain Abstraction
Database Abstraction
Video library (just to create thumbnails)
I already know that SQLAlchemy is really good for …
1
vote
4answers
113 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
1answer
56 views
Database Abstraction - what are the options?
How can I abstract my database from my application so that it is unaware of the database type?
I have to design a .Net 3.5 WPF application that must support either SQL Server or Visual FoxPro as the …
0
votes
4answers
222 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
323 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.
…
