The database-abstraction tag has no wiki summary.
0
votes
0answers
32 views
PHPUnit Mock Database Connection Class
I'm adding unit tests to legacy codes in a MVC framework. I have a model class called DbConnection that initiate all the database connection, it looks like this:
class DbConnection
function ...
0
votes
3answers
53 views
Query from model to Controller
I'm learning the whole MVC type of programming. I have a MySQl Query inside a model like so:
<?php
class BlogModel extends BaseModel {
public static function dbBlog() {
$db = ...
1
vote
1answer
357 views
How do I load Zend Framework 2 database module only
Zend Framework 2 claims to have a "use-at-will" design that allows you to easily use any of its modules without committing to the full stack. I need a good database access layer, and from the docs and ...
0
votes
1answer
30 views
Database abstraction options for hosts that disallow installation of PEAR modules
A prospective host disallows PEAR modules except for VPS/dedicated accounts. Can't afford spending $2000-3000/yr on VPS on a hobby site, so that option is out.
I'd like to add some database ...
2
votes
3answers
325 views
Simple database abstraction for PHP and MySQL
This is my very first post here, please let me know if I can improve the question.
I'm in the process of updating a website. In short: it handles user subscriptions and keeps track of sales (products ...
0
votes
0answers
128 views
CodeIgnitor, Stored Procedures & Returning Custom Messages
So, I'm currently trying to get familiar with CodeIgnitor and I'm having trouble trying to wrap my head around how MVC works. Below is code I came up with to call a stored procedure and return a ...
0
votes
2answers
126 views
MVC - Codeigniter - View talking to the model
In most of the posts I've seen on StackOverflow surrounding the MVC architecture, people have said that the model should only be communicated with from the controller, and not from the view.
I'm a ...
2
votes
2answers
236 views
How to integrate two different applications ? Web applications
Hi all i am a Student working on a project in an Hospital we designed an application where patient can book an appointment with doctor similar to this application ...
0
votes
1answer
72 views
Passing data from a contoller to a contoller to a model
I'm making a series of quizzes for a website I'm working on and am having a bit of trouble saving the user data. The structure is a bit odd, so that may have something to do with the problems coming ...
1
vote
2answers
93 views
PHP write Program for whatever Database
one question about PHP Development. I am building up some Form Fields for Calculations. Jquery Calculates and sends the Integer Values to a PHP Script via ajax. This Scripts selects some values from ...
4
votes
1answer
90 views
Prepared Statements in libdbi
I want to use libdbi to make an application database-agnostic. I would like to use prepared statements. How can I use prepared statements with libdbi? All the examples I saw use normal select bla from ...
3
votes
2answers
509 views
Difference between Data Access layer and Database Abstraction Layer and refactoring the Database class [duplicate]
Possible Duplicate:
What is the difference between Data Abstraction Layer & Data Acess Layer?
I just read up this article on nettuts. I got kinda confused. What's the difference between ...
1
vote
2answers
370 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
109 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:
...
11
votes
6answers
5k 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 ...
0
votes
0answers
264 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
258 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 ...
2
votes
5answers
549 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 ...
2
votes
1answer
438 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.
...
3
votes
5answers
409 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 ...
2
votes
1answer
634 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 ...
0
votes
2answers
547 views
How to call a models database query in a javascript function in a view?
On my user inbox from my user messaging system I am building a feature where a user can make an email message a favourite message.
I have created 2 methods in my messages model. One updates the 0 in ...
0
votes
1answer
2k 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
{
...
7
votes
1answer
903 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 ...
0
votes
1answer
623 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 ...
5
votes
6answers
5k 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
0
votes
3answers
506 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 ...
2
votes
1answer
189 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
4answers
2k 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
379 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 ...
2
votes
1answer
604 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
201 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 ...
11
votes
5answers
2k 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 ...
2
votes
3answers
402 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 ...
0
votes
1answer
223 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
574 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 ...
1
vote
4answers
195 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
4answers
724 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.
...
318
votes
17answers
46k views
mysqli or PDO - what are the pros and cons? [closed]
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 ...
