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.
0
votes
0answers
12 views
Best approach to designing DAL with ADO.NET for MVC 3 application?
I see a ton of examples for MVC DAL with entity framework, but nothing for ADO.NET and stored procedures?
There seems to be a trend on the "Repository" pattern and "UnitofWork" for creating a DAL, ...
0
votes
0answers
8 views
Add an MVC4 Mobile App template to subdomain of an existing Webforms app
Im looking into adding an mvc4 mobile application template to an existing website built in webforms 4. Im not sure how to approach this and cant find anything on google that fits exactly what im ...
2
votes
2answers
28 views
Returning Data Objects from DAL
What is the best practice to return data objects from Data Access Layers to Interface?
Currently, I have a layer that communicates with database and returns DataTable to business Layer and then ...
0
votes
1answer
19 views
Session evict and merge for entity update
I found this piece of code:
public virtual void Update(T entity) {
Logger.Debug("Update {0}", entity);
Session.Evict(entity);
Session.Merge(entity);
}
Can you ...
0
votes
0answers
12 views
DAL Architecture for self service Kiosks
I'm working on a self service Kiosk which enables users to pay their electric bills through the kiosk.
Each Kiosk is a thick client, running a window 7 computer with in a lockdown state (runs the ...
0
votes
1answer
22 views
Passing the connection string from 2 web applications sharing a DAL?
I have a solution with two MVC 3 application sharing the same DAL libaray. Each application is pointing to a different db and their connection string is stored in their respective web.config file.
...
0
votes
1answer
36 views
How to shorten code using SQL Command
Here is my problem:
I want to make my code short, and a friend of mine told me that I can use DAL.
But I don't know how to use DAL. I also tried to search internet. But It doesn't
give me some simple ...
1
vote
1answer
31 views
spring data like functionality for JEE6
I have experience building applications on the Spring Framework primarily. I was wondering if there was anything similar to the Spring Data API (to support a Data Access Layer) in the JEE6 space?
...
0
votes
1answer
52 views
DbSet Object reference not set to an instance of an object
I'm trying to make a universal 3-tier application with generic repositories for any data provider/orm. I just rewrote the code and got stuck on the error of Object reference not set to an instance of ...
0
votes
1answer
39 views
How to want to move my DAL to separate project in my MVC3 solution?
I have MVC 3 application that uses a DAL (ADO.NET) that communicates to a set of tsql stored procedures? I want to add a new MVC project to my current solution. I need to have DAL in a separate ...
0
votes
0answers
61 views
how to make a restful data access layer api with php [closed]
I was wondering if there is a way to make an RESTful data access layer API with PHP. The reason why I need a data access layer is that I want to access my data of the DB without knowing which database ...
1
vote
1answer
101 views
Executing a Stored Procedure from C# 4.0 without a dbml file
I am trying to create a dynamic stored procedure caller function (that would be setup as an endpoint in a .NET 4.0 WebApi Service).
Here are the facts:
I know I'm always going to be calling a ...
1
vote
2answers
46 views
OOP Programming with database access
I am working on a project with database access. Here is the outline of the classes i have implemented
public class Foo {
private String id;
private String name;
private int x;
...
0
votes
1answer
41 views
should login validations be handled in stored procedure or Data Access Layer?
hi i'm building a small web-app using AngularJs and c# wcf restful services..and there is a login module which has a stored procedure with minimal code which just validates whether the ...
0
votes
0answers
58 views
Database - which is a better design for Link tables?
My database has 5 principal tables (in yellow).
Each table has a primary key Id (AttributeId, FieldId, ValueId, UserId, ServiceId)
I need to join a User and a Service to a triple (Attribute, ...
0
votes
1answer
110 views
Using stored procedures in a Data Access Layer
I've got a simple application that reads from a database to set properties in a class and then output the result set to the screen as well as writing to a file. I'm trying to plan ahead for my ...
0
votes
1answer
44 views
Transaction script is Antipattern?
Well there is a similar topic about transaction script with NoSQL database, but this one is about the pattern in general. From what I find about Transaction script, it is not object-oriented at all. ...
0
votes
1answer
47 views
persist () and flush() inside loop - Doctrine
I want to know how many times the ff: codes will make a roundway trip to the database.
foreach ($recipients as $recipient ){
$received_email = new ReceivedEmail();
...
0
votes
1answer
25 views
Key point to keep in mind when writing database interaction layer (DAL)
What are key aspects or points when writing a Data Access Layer (DAL).
Do you allow higher layers to pass "unique" queries to the DAL, ie not just standard update, insert and delete...?
How does ...
-1
votes
1answer
150 views
Configurable Data Access Layer For Different Databases
I want to build a configurable data access layer for different databases.
We are developing a product (web based application) and the client can choose either MS Access or Sql as backend database.
...
0
votes
0answers
30 views
Reflection to intract with different classes on DAL layer using wrapper class
If I have method in which I have used the Reflection to interact with different class but In this method i have only a method name and parameters only. but I don't know the path (In which class the ...
0
votes
0answers
76 views
Adding data from a database into a dynamic piechart
I'm trying to make a piechart that automaticly gets data from the database
This is the SQL query for it:
select sum(f.bedrag), c.omschrijving
from financien f
inner join categorie c on f.categorieId ...
0
votes
1answer
48 views
Number of comments in post
I'm trying to count number of comments from within a post (trying to create some sort of blog) and displaying it in the post's title. Here is some code.
My models:
public class Post
{
public int ...
1
vote
2answers
40 views
How to shield a DB?
I have to provide an access to my semantics. Currently, it is an RDBMS but later I'll probably use additional non-RDBMS data sources (graph, hadoop etc).
The consumers of my semantics are located ...
1
vote
1answer
99 views
The N-layers paradigm - is this concept wrong?
I just saw the lecture:
Breaking apart conceptions
He keeps saying that the 3 layers paradigm started because of the problem with connection pooling.
And NOT because of architectural ...
0
votes
1answer
61 views
How the Application layer will be able to dynamicly query the DB in the DAL layer?
C#, LINQ to SQL
Some advice me to open new topic insteed that topic becouse there is no solution for my problem. Now I will need your help to re-design my layers. Linq To Sql - Making a dynamic ...
1
vote
2answers
169 views
Linq To Sql - Making a dynamic search for the Application layer without exposing DAL layer as DLL
Linq to SQL, C#.
I have 3 layers: DAL,BL,Application.
I want to build functions of search in the BL for each table so those functions get as a parameter 'where' expresstion from the Application ...
1
vote
1answer
93 views
In .Net 4.0 is the Data Access Application Blocks still the way to implement data connections?
I have been stuck in 2.0 for some time now due to what my job requires and I am trying to now keep up with the latest .net framework. I am begining to build a Mvc application and I am wondering if ...
0
votes
1answer
198 views
Model-View-Controller Tutorial including Data Access [closed]
I'm fairly new to OOP/C# and I want to learn how to use the MVC design pattern, in order to get a grasp on how objects interact. I followed a pretty good example here:
...
1
vote
2answers
85 views
Is it correct to directly accept values from the data access layer into the data contracts?
I have a question on the correct way to assign values obtained from the database in the data access layer to the data contracts at the WCF layer.
Consider a simple scenario in which to get a list of ...
1
vote
1answer
36 views
Substitute Models from MVC with existing Data and/or Business Layer?
The thing is that i would like to transfer some of our small WinForms applications to ASP.NET
I have the Data Access Layer dlls and the Business Layer Dlls.
Is it a good practice to substitute the ...
2
votes
2answers
75 views
optimization of db queries when implementing bounded contexts
In our project we're trying to apply the Bounded Context ideology and we've faced kind of obvious problem of performance. E.g., we have different classes (in different contexts) for representing a ...
0
votes
1answer
289 views
Implement an interface to my data access layer
I have a lot of class that have the same structure as the following, and I want to implement a interface in them. So, if does anyone has a solution for that?
public static class ClientDAL
{
...
2
votes
1answer
84 views
.NET Entity property as enum or object [closed]
I need some advice on best practices when creating an Entity and setting its (what are effectively enums) properties in .NET.
To take a simple example, let's say I have an object called 'Todo', which ...
0
votes
0answers
70 views
Best way to inject data source into data access provider
I'm building a web application (ASP.NET MVC 4), and in the interest of learning (and saving myself headaches later) I've been looking at various patterns and best practices while designing it. So far, ...
1
vote
1answer
62 views
cmd vs Visual Studio
I am currently working on windows application in c# and currently I met one problem.
I started to creating the windows application in notepad++ because I not able to use VS. I am using cmd to compile ...
2
votes
5answers
86 views
Is it better to divide a software into multiple modules with each module having its own database
I am working on a health care application mainly developed in asp.net with Oracle 11g as backend. In its current state the application is divided into 3 layers i-e UI, BLL and DAL. Since the BLL and ...
0
votes
0answers
38 views
How to have a generated .php class with inserts and selects for each DB table? (similar to MySQLDAO.php)
I am working with a pretty complex Oracle database and I'm creating manually, inside a .inc/.php file, functions for all the inserts, selects and updates.
Yesterday I heard someone saying that that ...
0
votes
0answers
201 views
VB.NET Data access layer improvement
I've made a data access layer for my vb.net project coursework which uses a databases back end.
It just seems really clunky to me (although I am very inexperienced) so I though i'd post it here to ...
0
votes
0answers
243 views
VB.NET/DATABASE few questions regarding my data access layer
I'm doing a project as part of my computing coursework. It's basically a grade manager for students doing ICT Coursework with the OCR exam board. It's really irritating me as I have to go about it a ...
1
vote
1answer
132 views
N-Layer Architecture in C#
I'm trying to implement N-layer architecture to my project first time.
I created BLL, DAL and GUI
Here is in GUI
XmlSettingsBLL xmlSettings = new XmlSettingsBLL();
var newDict = new ...
5
votes
2answers
134 views
Creating DAL for ASP.NET website
I am working on Microsoft Visual Studio DAL in which I am doing the traditional method of fetching/updating the data to show the reviews of the listed items of website by retrieving data from the ...
0
votes
1answer
142 views
Windows form using DAL BLL
My EmployeeDB class
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
namespace Test
{
public class EmployeeDB
...
0
votes
0answers
79 views
Web2Py csv export over Select sum, count and multiple tables
I trying to get an export over my tablestructure in a readable Form (csv) and can't get a single object as a return value.
my (simplified) table structur:
table: workshops
title
table: ...
0
votes
2answers
591 views
Cannot implicitly convert type 'void' to 'string'
I've tried for a while now and I really dont get it. I recive error "Cannot implicitly convert type 'void' to 'string'"
I have tried multiple variants of string, int, nothing, void, public, static and ...
1
vote
1answer
691 views
ASP.NET WEB API Data Access Layer with Stored procedures
I am very new to the MVC frame work and ASP.NET WEB API
I have been Building Web Application using ASP.NET AJAX with n-tier architecture with data as Stored Procedure Only for quite some time.
We ...
5
votes
2answers
188 views
How to read dynamic properties from database
I will try to explain my scenario the best way I can. I have the following tables in my database:
Products{ProductId, CategoryId ...}
Categories{CategoryId ...}
CategoryProperties{CategoryPropertyId, ...
0
votes
0answers
70 views
Where to put the Data Access Layer in an Android app?
I always worked in the same way about the DAO's in android. I make a singleton called, for example, ApplicationContext, that have the references to all my DAO's and another utils like a MD5Encoder, ...
2
votes
1answer
111 views
Do Repository, Data Mapper and Data Access Object work independently or collaboratively?
In my opinion,
A repository acts like a collection object which returns or operates a list of domain objects according to a criteria input.
A data mapper acts as a middle layer between database and ...
0
votes
0answers
85 views
The Lucene cache is not fully populated when instantiating the IndexSearcher (on Azure)
I have a Lucene index in Azure Blob Storage. I have an Azure Web Site with a DAL that's trying to instantiate a Lucene IndexSearcher, using an AzureDirectory that points to the blob and which uses a ...





