For issues relating to setting up and utilizing a 3-tier architecture.

learn more… | top users | synonyms

-2
votes
1answer
45 views

Why i got this error ? No connection string named '' could be found in the application config file [closed]

I have a DAL project using entity framework. I refer the project into BAL project, when i execute the BAL project. i got the error like "No connection string named 'StudentEntities' could be ...
0
votes
1answer
28 views

Where should I instantiate entities from database in a Three-tier app?

I'm creating a 3-tiers application, and I encountered a problem. I have a database that holds data about customers and a class that represents a customer entity in my app. The problem is, I don't know ...
-3
votes
0answers
49 views

Asp.net MVC in 3-tier architecture example [closed]

I'm looking for a 3-tier architecture solution with MVC as presentation layer to learn from. Is there any project I could download or a good article for this ? I'm not looking for theory, but more ...
0
votes
1answer
45 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
14 views

Create registration page in 3 tier

I am new to .net technology.I am doing a project in .net. I want to create registration form in 3 tier.How to create this one.Please anyone guide me please...Give me one example.
0
votes
0answers
15 views

Warning: mysql_connect(): [2002] Only one usage of each socket address (protocol/network address/ (trying to connect via tcp://localhost:3306)

My company has a server where this student system is stored.this system is divided into few department.Specifically in 1 department,this error keeps on showing.i don't know what is the exact problem ...
0
votes
0answers
45 views

.net Provider model and 3-tier architecture

I couldn't find a clear enough (for me) explanation of the .net Provider model (does it have a different name in 'classic' design pattern texts?), but from what I gathered, it seems to be a natural ...
0
votes
1answer
24 views

Calling connection string from connection.cs file

Is there any problem with the code?? Its not working and throwing an exception object ref. not set to an instance of object.. The exception is in datageneric.cs file at codeline string ...
0
votes
1answer
31 views

need help on Button event

I have used a 3-tier architecture to insert into database.I dont Know what code should i write on button click event in .cs file.Can some1 please help me? Extension.cs public static DbParameter ...
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; ...
1
vote
1answer
94 views

updating records in datagridview using 3 tier architecture in c#

How to edit a datagridview in c# that will update the database using 3 tier architecture. Could somebody share the code sample since i am new to this 3 tier concept.
1
vote
2answers
72 views

Oracle JDBC Tutorial - Want to understand 2 tier JDBC vs 3 tier

I am reading the oracle JDBC tutorial here - http://docs.oracle.com/javase/tutorial/jdbc/overview/index.html Please refer to Figure 2: Three-tier Architecture for Data Access. It says that - In ...
0
votes
3answers
74 views

ASP.NET nTier Architecutre

I have a project which require me to set up a web application using the ntier approach. However, as most of the projects that i did was a website using 1 tier, therefore i am foreign to this ...
-3
votes
3answers
165 views

I want to check the username is already exists in my database table or not?

i have registration page and i want to check that username is already exist in database or not in 3 tier architecture. MyRegistration.cs: public static int checkusername(string user_txt) { int ...
7
votes
4answers
688 views

Circular reference issue in 3-tier architecture C#

I want to build a web application with 3-tier architecture in ASP.NET. But I am getting a problem of circular referencing. I have 3 layer: Application layer containing UI. Business layer ...
-3
votes
4answers
93 views

How to find forgot password from the database?

i have one project in which i want to send forgot password mail but i am not able to find user name and password from the database it is sending blank mail like UserName : and Password : i want to ...
-4
votes
3answers
87 views

Getting trouble in Login Page 3-Tire architecture

Bussiness Access Layer : public static int login(string userlogin, string pwdlogin) { SqlConnection con = new SqlConnection(); con.ConnectionString = GetConnectionString(); ...
0
votes
1answer
141 views

Is CocuchDB/TouchDB designed to serve offline/online setup for ios apps?

I am in little bit confusion because of my less understanding about CouchDB. Let me explain in simple words. I am developing an iphone app for which my client may ask for android version. I am using ...
3
votes
4answers
249 views

where to put try/catch in 3 tier architecture

I have a 3 tier based web application. I want to use I am using try catch block in my business logic layer. Is it right to use try/catch block in business logic or I need to use it in my UI layer? ...
1
vote
0answers
445 views

How to call stored procedure dynamically with 3-tier architecture?

Actually I recently made a web application. I have around 20 store procedures [for insert, update and delete] , around 12 store procedures are having different numbers of procedures. I made different ...
0
votes
1answer
128 views

Login Form using Sql 3layered style

I am trying to make a decent login form for my application using Sql server management studio. I am supposed to do it 3 layered. I think they're both correct, in my main form i got 2 txtboxes and a ...
0
votes
1answer
131 views

Java RMI deployment

I'm trying to develop a 3-tier architecture distributed java application. Database Server Application Server Thin-Client Swing Applications I haven't developed this type of applications before. ...
-2
votes
2answers
232 views

How to save Output Data into XML File Microsoft visual Studio 2010 [closed]

public AdvertisementDAL selectAdvertisementLocation1(DateTime now, string gender) { AdvertisementDAL dal = null; string sql = "Select * From Advertisement Where @currentDate ...
0
votes
1answer
117 views

Is this how CQRS is implemented with DI and Repository pattern?

I assigned a POC project to someone where I asked to implement both Command Query separation, Inversion of Control (with Dependency Injection) and Repository pattern. “Someone” gave me a POC solution ...
3
votes
3answers
702 views

How to pass datareader value from DAL to presentation layer

I am working on a project using 3 tier architecture. I want to knw about how to pass datareader value from DAL to Presentation layer My code is like this. In DAL layer public class HomeDAL { public ...
0
votes
0answers
37 views

how to implement join in 3 tier

I'm trying to change a single tier app to 3 tier, I'm new to 3 tier. I have an edmx file in my Data Access Layer, that's all I have there. For my business logic layer, I have a linq query that has ...
0
votes
0answers
47 views

MVC multi-tier mobile application

I'm a bit confused about using the MVC pattern. We have a 3-tier architecture: data, middleware, front-end. We are developing an app for iPad which basically does the following: consumes a JSON ...
3
votes
1answer
581 views

what is Microsoft.Practices.EnterpriseLibrary.Data

I want to know what is Microsoft.Practices.EnterpriseLibrary.Data and why we use this dll. what are the benefits of this dll. I want to create a project on 3-tier architecture what is the best way ...
1
vote
3answers
156 views

Confusion with 3 layer design

I've been reviewing examples on the web of 3 layer design and I've noticed that most samples return either datasets or data tables. The thing that is confusing me is what if you would rather return a ...
-3
votes
1answer
101 views

3 Tier connectivity in Java

I' am building a application program in Java EE as a front end and MySQL as a back end for database... I wanted to establish a 3-tier connectivity between the database and the forms in Java. What ...
0
votes
1answer
215 views

3 tier programming chart

I wish to create a chart using microsoft visual studio 2010 but I do not know how to do it. Tried googling for answer but none of them is for 3 tier. This is my code for the Data Access Layer ...
0
votes
1answer
107 views

Application design in asp.net MVC [closed]

I'm planning to design a asp.net mvc application. I'm confused whether to design a 2 tier or 3 tier architecture. I'm giving priority to performance. If i design a 2 tier application, I'm planning to ...
1
vote
2answers
145 views

calculate month different using radMonthYearPicker(telerik)

Exact Duplicate of Calculate month different using radMonthYearPicker I have 2 radMonthYearPicker(1 is for start Date another 1 is for end Date) I want to calculate the month different between ...
3
votes
2answers
2k views

How to implement 3 tiers architecture in c#

I read many articles talk about 3 tiers architecture in c# but i see that: Almost use Bussiness Logic Layer(BLL) as a object mapping corresponding table in database. This BLL object has some methods ...
1
vote
1answer
141 views

Calculate month different using radMonthYearPicker

I have 2 radMonthYearPicker(1 is for start Date another 1 is for end Date) I want to calculate the month different between this 2 date. for my start Date, I set my month as dec and year 2012. for my ...
3
votes
0answers
93 views

Applying AOP to a 3-tier winforms application

Background I am trying to implement logging and exception handling using AOP for a new project. I wish to apply this through all the 3 layers of a Windows form application. I am using Windsor ...
0
votes
0answers
163 views

Connected or Disconnected classes in ASP.NET 3 Tier Architecture

I am a bit confused about when to use connected or disconnected classes when creating an ASP.NET application. Tradition 3-tier apps almost always show that the business layer contains BO (business ...
1
vote
1answer
126 views

C++ Builder Datasnap How to access Server Object List

I am making a 3 tier application in c++ builder XE3 with Datasnaps and i am working on the middle tier part for now. but i have one problem, the server needs to show the information from the client ...
0
votes
4answers
146 views

.NET - divorcing layers

I am trying to create a structure for a large .NET application I am developing. I am planning to create three projects: DataAccessLayer BusinessLogicLayer UserInterfaceLayer I have two questions. ...
3
votes
1answer
207 views

Design Approach of a New ERP (3-tier) - Please advice

I am currently designing a new ERP which will have 10 different modules. I am using SQL server for database. .NET platform for programming. For desktop part, I am using WPF, for Web, ASP.NET I am ...
0
votes
1answer
282 views

Passing a large number of parameters in 3 tier architecture in asp.net website project

I have just started to implement application development using 3-tier architecture. Also I am following some good coding practices. In the application, I need to pass some large amount of data to ...
1
vote
1answer
73 views

How do I handle name conflicts mapping from business layer to presentation layer?

In a N-tier application, my website connects to a web reference to access business layer logic and to get business layer DTOs. For example, the BL may provide a definition for a Car: public class ...
1
vote
2answers
71 views

Layers and Entities?

(I'm gonna ask 2 question please). We use 3 layers: Bl , Dal , UI. We didn't want to build one big BL , DAL for All Objects. So we created this structure both for Agents and Leads. Now lets say ...
1
vote
0answers
70 views

C# objectdatasource control in 3-tier app

is a good practice using ObjectDataSOurce control in C# 3-tier applications ? or it is better doesn't use any control and pass back and forth, Datatables or DataSet objects manually, between layers?
0
votes
0answers
63 views

how to query a database from mvc when the database is defined in a distinct project?

I broke my project in two parts, I defined my edmx file in a class library project, added method to display the list of user in a class. I'm trying to call the method from a mvc action method, which ...
0
votes
4answers
236 views

Getting database connection error in three tier architechture in mvc 3

I'm trying to implement basic three tier architecture with mvc 3. but getting an error while running the solution ( showing no error while building the solution). The organization of my projects & ...
2
votes
2answers
314 views

Java-EE: How to design data flow in a 3-tiered application environment?

I am currently working on a distributed application using the following components: 1.tier: Database-Server -> MySQL 5.5 2.tier: Application-Server -> Glassfish 3.1.2.2 3.tier: Stand-alone ...
4
votes
3answers
504 views

Use of DTO in 3 tier architecture [closed]

I am using simple 3 tier architecture. In this I am using DTO classes to communicate between UI,BL and DL. So there is any better way for communication between layers? or this is the right way?
0
votes
3answers
157 views

Good implementation approach for Layered application with 3-tier architecture?

I am developing an application using MVC3 and Entity Framework. Its a three layered approach with Presentation Layer hosted in Web Server and Business Layer and Data Access Layer in Application ...
0
votes
2answers
304 views

3-tier architecture, web application and user logging

In a web application that respects a 3-tier architecture, who is responsible for the implementation of a user logging module: the presentation tier or the application one? I'm asking that question ...

1 2 3 4