Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

N-Tier Architecture. What are it's benefits? 1

Status
Not open for further replies.

RotorTorque

Programmer
Apr 29, 2007
100
US
Hi all,

What are the benefits of using n-tier architecture? I know it helps with code readability and makes code easier to follow, Especially if you are an Old School programmer. But, as far as improving an application's performance, does it help it?
The reason why I bring this up is because I have been asked to write a new application using bound controls. If I use bound controls, I believe, this will take away n-tier architecture. Am I wrong?

Thanks in advance,
RotorTorque :)
 
Using bound controls doesn't take away the n-tieredness of it.

n-tiered or n-layered programming is the followin (and you will find much better explanations on google):

layering is the logical splitting of your code in uhm,... logical blocks in other words your dataccess code your database, the view,... are all logical blocks they can all reside on the same physical computer or each one can reside on a different computer then we call them tiers, physical tiers. So you databinding is part of the view and should not interfere with your layers/tiers.

Christiaan Baes
Belgium

My Blog
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top