Tagged Questions
The database-abstraction tag has no wiki summary.
141
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 ...
11
votes
5answers
1k views
Database abstraction layer design - Using IRepository the right way?
I'm in the process of designing my ASP.NET MVC application and I ran across a couple of interesting thoughts.
Many samples I have seen describe and use the Repository pattern (IRepository) so this is ...
8
votes
6answers
460 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 ...
4
votes
2answers
841 views
what is data abstraction exactly means
what is data abstraction means? can i get some sample examples as well as real time examples in our daily life
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
221 views
Scala: ResultSet translation into a different kinds of multimaps
I am going to create wrapper over JDBC ResultSet in Scala.
This wrapper is intended to be a function ResultSet => ParticularType.
The problem is I can't find a common solution for making MultiMaps.
...
2
votes
1answer
245 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 ...
2
votes
1answer
359 views
Database abstraction/adapters for ruby
What are the database abstractions/adapters you are using in Ruby? I am mainly interested in data oriented features, not in those with object mapping (like active record or data mapper).
I am ...
2
votes
4answers
139 views
Where do ORMs fall through?
I often hear people bashing ORMs for being inflexible and a "leaky abstraction", but you really don't hear why they're problematic. When used properly, what exactly are the faults of ORMs? I'm asking ...
2
votes
3answers
301 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
2answers
38 views
Using static methods to interface with a database - any potential problems?
I'm looking at a class handling database access for an MVC3/.Net application.
The class is static, and provides nice convenience methods for common DB queries - all sorts of twiddly stuff like ...
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
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
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 ...
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
103 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 ...
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
408 views
Pear DB class not found
I have create a class called Database.php for interacting with MySql database using Pear Db class.
Database.php
<?php
require_once('DB.php');
require_once('cException.php');
class DataBase
{
...
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
220 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
1answer
120 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
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.
...