`
wangleifire
  • 浏览: 509063 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

浅析C#中三层架构的实现

    博客分类:
  • c#
阅读更多
    本文讨论如何在C#中实现三层架构,使用MS Access数据库存储数据。同时在三层架构中实现一个小型的可复用的组件来保存客户数据,并提供添加、更新、查找客户数据的功能。

这篇文章讨论如何在C#中实现三层架构,使用MS Access数据库存储数据。在此,我在3层架构中实现一个小型的可复用的组件保存客户数据。并提供添加,更新,查找客户数据的功能。

背景

首先,我介绍一些3层架构的理论知识。简单说明:什么是3层架构?3层架构的优点是什么?

什么是三层架构?

3层架构是一种“客户端-服务器”架构,在此架构中用户接口,商业逻辑,数据保存以及数据访问被设计为独立的模块。主要有3个层面,第一层(表现层,GUI层),第二层(商业对象,商业逻辑层),第三层(数据访问层)。这些层可以单独开发,单独测试。

为什么要把程序代码分为3层。把用户接口层,商业逻辑层,数据访问层分离有许多的优点。

在快速开发中重用商业逻辑组件,我们已经在系统中实现添加,更新,删除,查找客户数据的组件。这个组件已经开发并且测试通过,我们可以在其他要保存客户数据的项目中使用这个组件。

系统比较容易迁移,商业逻辑层与数据访问层是分离的,修改数据访问层不会影响到商业逻辑层。系统如果从用SQL Server存储数据迁移到用Oracle存储数据,并不需要修改商业逻辑层组件和GUI组件

系统容易修改,假如在商业层有一个小小的修改,我们不需要在用户的机器上重装整个系统。我们只需要更新商业逻辑组件就可以了。

应用程序开发人员可以并行,独立的开发单独的层。

代码

这 个组件有3层,第一个层或者称为GUI层用form实现,叫做FrmGUI。第二层或者称为商业逻辑层,叫做BOCustomer,是Bussniess Object Customer的缩写。最后是第三层或者称为数据层,叫做DACustomer,是Data Access Customer的缩写。为了方便,我把三个层编译到一个项目中。

用户接口层

下面是用户接口成的一段代码,我只选取了调用商业逻辑层的一部分代码。

//This function get the details from the user via GUI

//tier and calls the Add method of business logic layer.

private void cmdAdd_Click(object sender, System.EventArgs e)

{

try

{

cus = new BOCustomer();

cus.cusID=txtID.Text.ToString();

cus.LName = txtLName.Text.ToString();

cus.FName = txtFName.Text.ToString();

cus.Tel= txtTel.Text.ToString();

cus.Address = txtAddress.Text.ToString();

cus.Add();

}

catch(Exception err)

{

MessageBox.Show(err.Message.ToString());

}

}
 
//This function gets the ID from the user and finds the

//customer details and return the details in the form of

//a dataset via busniss object layer. Then it loops through

//the content of the dataset and fills the controls.
 
private void cmdFind_Click(object sender, System.EventArgs e)

{

try

{

String cusID = txtID.Text.ToString();
 
BOCustomer thisCus = new BOCustomer();
 
DataSet ds = thisCus.Find(cusID);
 
DataRow row;

row = ds.Tables[0].Rows[0];
 
//via looping

foreach(DataRow rows in ds.Tables[0].Rows )

{

txtFName.Text = rows["CUS_F_NAME"].ToString();

txtLName.Text = rows["CUS_L_NAME"].ToString();

txtAddress.Text = rows["CUS_ADDRESS"].ToString();

txtTel.Text = rows["CUS_TEL"].ToString();

}

}

catch (Exception err)

{

MessageBox.Show(err.Message.ToString());

}
 
}
 
//this function used to update the customer details.

private void cmdUpdate_Click(object sender, System.EventArgs e)

{

try

{

cus = new BOCustomer();

cus.cusID=txtID.Text.ToString();

cus.LName = txtLName.Text.ToString();

cus.FName = txtFName.Text.ToString();

cus.Tel= txtTel.Text.ToString();

cus.Address = txtAddress.Text.ToString();
 
cus.Update();

}

catch(Exception err)

{

MessageBox.Show(err.Message.ToString());

}

}

商业逻辑层

下面是商业逻辑层的所有代码,主要包括定义customer对象的属性。但这仅仅是个虚构的customer对象,如果需要可以加入其他的属性。商业逻辑层还包括添加,更新,查找,等方法。

商业逻辑层是一个中间层,处于GUI层和数据访问层中间。他有一个指向数据访问层的引用cusData = new DACustomer().而且还引用了System.Data名字空间。商业逻辑层使用DataSet返回数据给GUI层。

 


 

using System;

using System.Data;

namespace _3tierarchitecture

{

///

/// Summary description for BOCustomer.

///

public class BOCustomer

{

//Customer properties

private String fName;

private String lName;

private String cusId;

private String address;

private String tel;

private DACustomer cusData;

public BOCustomer()

{

//An instance of the Data access layer!

cusData = new DACustomer();

}

///

/// Property FirstName (String)

///

public String FName

{

get

{

return this.fName;

}

set

{

try

{

this.fName = value;

if (this.fName == "")

{

throw new Exception(

"Please provide first name ...");

}

}

catch(Exception e)

{

throw new Exception(e.Message.ToString());

}

}

}

///

/// Property LastName (String)

///

public String LName

{

get

{

return this.lName;

}

set

{

//could be more checkings here eg revmove ' chars

//change to proper case

//blah blah

this.lName = value;

if (this.LName == "")

{

throw new Exception("Please provide name ...");

}

}

}

///

/// Property Customer ID (String)

///

public String cusID

{

get

{

return this.cusId;

}

set

{

this.cusId = value;

if (this.cusID == "")

{

throw new Exception("Please provide ID ...");

}

}

}

///

/// Property Address (String)

///

public String Address

{

get

{

return this.address;

}

set

{

this.address = value;

if (this.Address == "")

{

throw new Exception("Please provide address ...");

}

}

}

///

/// Property Telephone (String)

///

public String Tel

{

get

{

return this.tel;

}

set

{

this.tel = value;

if (this.Tel == "")

{

throw new Exception("Please provide Tel ...");

}

}

}

///

/// Function Add new customer. Calls

/// the function in Data layer.

///

public void Add()

{

cusData.Add(this);

}

///

/// Function Update customer details.

/// Calls the function in Data layer.

///

public void Update()

{

cusData.Update(this);

}

///

/// Function Find customer. Calls the

/// function in Data layer.

/// It returns the details of the customer using

/// customer ID via a Dataset to GUI tier.

///

public DataSet Find(String str)

{

if (str == "")

throw new Exception("Please provide ID to search");

DataSet data = null;

data = cusData.Find(str);

return data;

}

}

}

 

数据访问层

数据层包括处理MS Access数据库的细节。所有这些细节都是透明的,不会影响到商业逻辑层。数据访问层有个指向商业逻辑层的引用BOCustomer cus。为了应用方便并且支持其他数据库。

 

using System;

using System.Data.OleDb;

using System.Data;

namespace _3tierarchitecture

{

///

/// Summary description for DACustomer.

///

public class DACustomer

{

private OleDbConnection cnn;

//change connection string as per the

//folder you unzip the files

private const string CnnStr =

"Provider=Microsoft.Jet.OLEDB.4.0;Data " +

"Source= D:\\Rahman_Backup\\Programming\\" +

"Csharp\\3tierarchitecture\\customer.mdb;";

//local variables

private String strTable="";

private String strFields="";

private String strValues="";

private String insertStr="";

//this needs to be changed based on customer

//table fields' Name of the database!

private const String thisTable = "tblCustomer";

private const String cus_ID = "CUS_ID";

private const String cus_LName = "CUS_L_NAME";

private const String cus_FName = "CUS_F_NAME";

private const String cus_Tel = "CUS_TEL";

private const String cus_Address = "CUS_ADDRESS";

public DACustomer()

{

}

public DACustomer(BOCustomer cus)

{

// A reference of the business object class

}

//standard dataset function that adds a new customer

public void Add(BOCustomer cus)

{

String str = BuildAddString(cus);

OpenCnn();

//Open command option - cnn parameter is imporant

OleDbCommand cmd = new OleDbCommand(str,cnn);

//execute connection

cmd.ExecuteNonQuery();

// close connection

CloseCnn();

}

//standard dataset function that updates

//details of a customer based on ID

public void Update(BOCustomer cus)

{

OpenCnn();

String selectStr = "UPDATE " + thisTable +

" set " + cus_LName + " = '" + cus.LName + "'" +

", " + cus_FName + " = '" + cus.FName + "'" +

", " + cus_Address + " = '" + cus.Address + "'" +

", " + cus_Tel + " = '" + cus.Tel + "'" +

" where cus_ID = '" + cus.cusID + "'";

OleDbCommand cmd = new OleDbCommand(selectStr,cnn);

cmd.ExecuteNonQuery();

CloseCnn();

}

//standard dataset function that finds and

//return the detail of a customer in a dataset

public DataSet Find(String argStr)

{

DataSet ds=null;

try

{

OpenCnn();

String selectStr = "select * from " + thisTable +

" where cus_ID = '" + argStr + "'";

OleDbDataAdapter da =

new OleDbDataAdapter(selectStr,cnn);

ds = new DataSet();

da.Fill(ds,thisTable);

CloseCnn();

}

catch(Exception e)

{

String Str = e.Message;

}

return ds;

}

private void OpenCnn()

{

// initialise connection

String cnnStr = CnnStr;

cnn = new OleDbConnection(cnnStr);

// open connection

cnn.Open();

}

private void CloseCnn()

{

// 5- step five

cnn.Close();

}

// just a supporting function that builds

// and return the insert string for dataset.

private String BuildAddString(BOCustomer cus)

{

// these are the constants as

// set in the top of this module.

strTable="Insert into " + thisTable;

strFields=" (" + cus_ID +

"," + cus_LName +

"," + cus_FName +

"," + cus_Address +

"," + cus_Tel + ")";

//these are the attributes of the

//customer business object.

strValues= " Values ( '" + cus.cusID +

"' , '" + cus.LName +

"' , '" + cus.FName +

"' , '" + cus.Address +

"' , '" + cus.Tel + "' )";

insertStr = strTable + strFields + strValues;

return insertStr;

}

}

}

分享到:
评论

相关推荐

    浅析C#编程中的内存管理

    在C#编程中,内存管理是一项关键的概念,虽然程序员通常不需要直接进行内存分配和释放,但理解其工作原理对于编写高效、无泄漏的代码至关重要。本文将深入探讨C#中的内存管理,特别是值类型和引用类型如何在内存中...

    浅析C#中的图形编程

    在C#中,图形编程是开发用户界面和创建可视化应用的关键部分。C#引入了GDI+(Graphics Device Interface Plus),这是一个比原始的GDI更为强大的图形处理库,旨在简化编程工作并提供更丰富的功能。GDI+允许开发者...

    浅析J2EE的三层结构优点

    ### 浅析J2EE的三层结构优点 #### 一、引言 随着信息技术的不断发展,企业级应用程序的需求日益增长,而Java Enterprise Edition (J2EE)作为一种成熟的企业级开发平台,凭借其强大的功能和灵活性,在众多开发框架...

    浅析C# 中object sender与EventArgs e

    ### 浅析C# 中object sender与EventArgs e #### 一、C# 预定义事件处理机制概览 在深入了解C#中的`object sender`与`EventArgs e`之前,我们首先需要理解.NET框架中与事件相关的类和委托的基础概念。 在C#中,...

    浅析C# 状态机Stateless

    C# 状态机 Stateless 是一种轻量级的状态机库,能够帮助开发者轻松地创建状态机,实现状态之间的切换。下面是对 C# 状态机 Stateless 的详细介绍。 什么是状态机? 状态机(Finite State Machine)是一种数学模型...

    浅析C#中object-sender与EventArgs-e

    总结来说,C#中的事件处理机制是通过委托和事件来实现的,这为代码提供了良好的解耦性和可扩展性。预定义的事件如按钮点击,以及自定义的事件如用户输入监听,都可以通过相似的方式来处理。理解和掌握这一机制对于...

    浅析C# 内存管理

    ### 浅析C# 内存管理 #### 内存管理概述 在现代软件开发过程中,内存管理一直是至关重要的组成部分。对于C#这样的高级编程语言而言,它为开发者提供了自动化的内存管理机制,大大减轻了程序员在内存管理方面的负担...

    浅析C#中的文件操作

    在C#编程语言中,文件操作是至关重要的一个部分,它允许程序员读取、写入、创建、删除和管理磁盘上的文件。本篇将深入浅出地探讨C#中的文件操作,帮助开发者理解并掌握相关知识。 首先,C#提供了丰富的类库,如...

    浅析C#委托和事件实例

    C#中的委托和事件是面向对象编程中两个重要的特性,它们在实际的软件开发中扮演着关键角色,尤其是在处理事件驱动编程和回调机制时。本文将深入解析C#中的委托和事件,通过实例来帮助理解它们的工作原理和应用场景。...

    浅析C#中的套接字编程.docx

    在C#中,套接字编程是实现网络通信的基础,特别是在TCP/IP协议栈上构建应用程序时。C#作为一门兼顾强大特性和快速开发的语言,提供了丰富的API来支持套接字编程,以对抗Java在网络编程领域的优势。 套接字是网络...

    浅析C#异步操作

    C#异步操作是.NET Framework提供的一种编程技术,允许开发者在执行长时间运行的操作时,不会阻塞主线程,从而提高应用程序的响应性。C#异步调用主要依赖于两...在实际开发中,可以根据具体需求选择合适的异步实现方式。

    浅析C#中的套接字编程.rar

    引用了一个网站的内容,相当的给力,几个小例子非常适合初学者学习.

    浅析SOA三层体系结构及发展状况.pdf

    在分布式系统中,三层体系结构是一个常见的架构模式。这种架构将系统分为三个主要层次:表示层(用户界面)、业务逻辑层(应用处理)和数据访问层(数据存储)。这种分离使得系统各部分可以独立开发和优化,同时减少...

    3层架构&浅析ASP[1][1].NET三层架构.pdf

    本文将详细介绍ASP.NET中的三层架构模型,包括表现层(Presentation Layer)、业务逻辑层(Business Logic Layer)和数据访问层(Data Access Layer),并探讨其设计思想和具体实现。 #### 二、表现层...

    浅析C#图形编程

    C#提供了一整套相当丰富的类库、方法以及事件以供开发者使用。C#还引入了GDI+,它是由GDI演变而来的,具有比GDI更强大的功能而且简化了程序员...本文,笔者就通过一些实例像读者介绍一下C#中的图形编程的基本知识。

    C# 网络编程网络原理

    网络编程是计算机通信的重要组成部分,尤其在C#开发中,理解网络原理对于创建高效、稳定的网络应用程序至关重要。本文将深入探讨网络原理,帮助开发者为C#网络编程奠定坚实的基础。 1. **网络协议的理解** - 协议...

    浅析:SOA三层体系结构及发展状况

    实践论认为:从实践提升到理论,再由...当前国内要发展SOA主要有三方面工作:方法、工具和环境。方法是工程技术,由基础理论来指导提出的。所以一门科学必需要包括:认知科学(哲理)、工程技术和方法、最后是理论。

    浅析路由器与三层交换机的异同及在消防网络中的应用.pdf

    浅析路由器与三层交换机的异同及在消防网络中的应用.pdf

Global site tag (gtag.js) - Google Analytics