Top "Data-access-layer" questions

Data access layer is a layer of a computer program which provides simplified access to data stored in persistent storage of some kind, such as an entity-relational database.

PHP Data Access Object

I'm trying to figure out if I'm using the DAO pattern correctly and, more specifically, how abstract db persistence should …

php design-patterns data-access-layer
Difference between Repository and Service layer

I looked through some related questions but still I don't see much difference between the a repository and a service …

java service repository data-access-layer
What's the difference between a "Data Service Layer" and a "Data Access Layer"?

I remember reading that one abstracts the low level calls into a data agnostic framework (eg. ExecuteCommand methods etc), and …

data-access-layer
How to query column names dynamically using Postgres/NpgSQL

I have a filter object to query a table with many columns, and rather than write a condition covering all …

sql postgresql data-access-layer npgsql
C# Handle on SQL Server Message Output

When executing scripts in SQL Server Management Studio, messages are often generated that display in the message window. For example …

c# sql-server data-access-layer ssms
Why put a DAO layer over a persistence layer (like JDO or Hibernate)

Data Access Objects (DAOs) are a common design pattern, and recommended by Sun. But the earliest examples of Java DAOs …

architecture persistence data-access-layer jdo dao
Nullable values in C++

I'm creating a database access layer in native C++, and I'm looking at ways to support NULL values. Here is …

c++ data-access-layer nullable
Presentation, Business and Data Layer

I just started programming in C# and was reading about dividing your application / website into the three different layers was …

c# data-access-layer layer presentation
Should the repository layer return data-transfer-objects (DTO)?

I have a repository layer that is responsible for my data-access, which is called by a service layer. The service …

c# data-access-layer n-tier-architecture dto service-layer
Design Patterns for Data Access Layer

I have an application which uses a database (MongoDB) to store information. In the past I have used a class …

java mongodb design-patterns dao data-access-layer