用VBNet创建三层的数据库程序

输送设备2020年06月14日

1. 概论:

本文将介绍如何创建一个三层应用程序,并且将介绍如何创建一个Web Service服务。

创建Windows三层结构应用程序的体系架构如下图所示:

该结构分三个层次:表示层、业务层、数据层。

数据层:代表物理数据库。

业务层:负责数据层与表示层之间的数据传输。

表示层:应用程序的客户端,它通过业务层来访问数据库。

表示层所操作的是驻留在内存中的本地数据,当需要更新数据库数据时,要通过业务层提供的更新方法实现。这样可以大大提高应用程序的性能,而且,什么时候更新数据完全由你决定,提高了编程的灵活性。

2.实例:

这里我们具体做一个实例来看看如何用创建三层结构的应用程序。

数据库:我们选择SQL SERVER 的NorthWind数据库。

业务层:我们创建一个WebService作为中间层。(需要安装IIS服务)

表示层:我们写一个Windows Form

第一步:创建WebService。

具体步骤如下:

1. 新建一个项目,选择 Web服务,命名为:”WebService For 业务层”。

2. 添加两个Sql DataAdapter,一个为Customer_da,它指向NorthWind数据库的Customers表,另一个为Order_da,指向Northwind数据库的Orders表。

3. 然后生成一个Typed DataSet(选择“数据”菜单的“生成数据集”),命名为:Super_ds.

4. 数据库连接已经完成,下一步我们将考虑它与表示层之间的通信,这里我们定义两个方法。一个为:Get_DataSet胡某的行为不构成违法犯罪,它返回一个Super_ds类型的数据集,另一个为:Update_DataSet,它负责更新数据库数据, 方法代码如下:

WebMethod() Public Function Get_Dataset() As super_ds

customer_ll(Super_stomers)

order_ll(Super_ders)

Return Super_ds1

End Function

WebMethod() Public Sub Update_Dataset()

Super_ceptChanges()

End Sub

你可以运行测试一下你建立的这个WebService。它将提供两个方法。返回的DataSet是以XML表示的。

业务层的完整代码如下:

Imports rvices

Public Class Service1

Inherits bService

‘Web Services Designer Generated Code…….

WebMethod() Public Function Get_Dataset() As super_ds

customer_ll(Super_stomers)

order_ll(Super_ders)

Return Super_ds1

End Function

WebMethod() Public Sub Update_Dataset()

Super_ceptChanges()

End Sub

' WEB SERVICE EXAMPLE

' The HelloWorld() example service returns the string Hello World.

' To build, uncomment the following lines then save and build the project.

' To test this web service, ensure that the .asmx file is the start page

' and press F5.

'

'WebMethod() Public Function HelloWorld() As String

' HelloWorld = "Hello World"

' End Function

End Class

第二步:创建表示层

具体步骤如下:

1. 新建一个Windows应用程序,命名为:“Windows Form For 表示层”。

2. 在窗体上添加一个DataGrid,一个Button,Button1的text为“Load”,作用是:从业务层读取数据。

3. 在解决方案窗体中添加Web 引用,将我们自己建立的Web Service for 业务层引入到当前项目中。

4. 向Button1的Click事件添加如下代码:

Dim Customer_Ds As New per_ds()

Dim ser1 As New rvice1()

Customer_rge(t_Dataset)

taSource = Customer_Ds

这里我们调用了Web Service的Get_DataSet函数,Update_DataSet方法的调用与此完全相同。

表示层的完整代码如下:

Imports Data_Access_表示层

Public Class Form1

Inherits rm

#Region " Windows Form Designer generated code "

Public Sub New()

w()

'This call is required by the Windows Form Designer.

InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)

If disposing Then

If Not (components Is Nothing) Then

spose()

End If

End If

spose(disposing)

End Sub

Friend WithEvents Button1 As tton

Friend WithEvents Button2 As tton

Friend WithEvents Button3 As tton

Friend WithEvents Client_DataSet As Data_Access_表示层.per_ds

Friend WithEvents DataGrid1 As taGrid

'Required by the Windows Form Designer

Private components As ntainer

'NOTE: The following procedure is required by the Windows Form Designer

'It can be modified using the Windows Form Designer.

'Do not modify it using the code editor.

buggerStepThrough() Private Sub InitializeComponent()

tton1 = New tton()

tton2 = New tton()

tton3 = New tton()

ient_DataSet = New Data_Access_表示层.per_ds()

taGrid1 = New taGrid()

CType(ient_DataSet, upportInitialize).BeginInit()

CType(taGrid1, upportInitialize).BeginInit()

spendLayout()

'

'Button1

'

cation = New int(88, 360)

= "Button1"

bIndex = 0

xt = "load"

'

'Button2

'

cation = New int(232, 360)

= "Button2"

bIndex = 1

xt = "update"

'

'Button3

'

cation = New int(376, 360)

= "Button3"

bIndex = 2

xt = "clear"

'

'Client_DataSet

'

ient_taSetName = "Client_DataSet"

ient_cale = New ltureInfo("zh-CN")

ient_space = ""

'

'DataGrid1

'

taMember = ""

cation = New int(40, 56)

= "DataGrid1"

ze = New ze(480, 264)

bIndex = 3

'

'Form1

'

toScaleBaseSize = New ze(6, 14)

ientSize = New ze(568, 429)

dRange(New ntrol() {taGrid1, tton3, tton217点, tton1})

= "Form1"

xt = "Form1"

CType(ient_DataSet, upportInitialize).EndInit()

CType(taGrid1, upportInitialize).EndInit()

sumeLayout(False)

End Sub

#End Region

Private Sub Button1_Click(ByVal sender As ject, ByVal e As entArgs) Handles ick

Dim Customer_Ds As New per_ds()

Dim ser1 As New rvice1()

Customer_rge(t_Dataset)

taSource = Customer_Ds

End Sub

End Class

总结:可见,表示层窗体上完全没有数据库连接控件,它与数据库的连接任务是通过业务层来完成的,这样,程序的结构更加清晰,当然业务层的实现也可以用其他方法,比如:写一个自己的类来完成与数据库的数据传输。

邵阳白癜风治疗费用
中医频道
手腕脱臼怎么复位
相关阅读
小圆脸有多显胖?当谭松韵与baby同框,看清脸部照,让人不敢信

小圆脸有多显胖?当谭松韵与baby同框,注意到身躯照,让人劝信 昨日,由谭...

2024-09-05
评论丨启功书法赝品印上北大学生证,一个尴尬的隐喻

批评家丨德馨鉴赏真品标明清华会员卡,一个惊愕的意涵 清华的这本会员...

2024-07-27
职场情商讲义:简朴的哲学,练就由内而外的平衡性

本文看点:自觉情商,不只是彰显在交谈上,不只起到于人和人之间的的关系...

2024-06-29
最新应于!延期!

2022年看护执业资格笔试和环境卫生管理学技术资格笔试延期至7年底23日、24日...

2024-06-23
60岁叶倩文穿深V蕾丝风景秀丽背!头发花白皱纹明显,表情搞怪做鬼脸

昨日,有留言在社交平台上晒显露叶倩文开拍片段的特写,不见60岁的叶倩文...

2024-05-05
为什么有人月薪几千,还能每天额头万的新包?

我,一个普一般来说通的打工人 没有年薪几十万,家庭先决条件也一般来说...

2024-02-23
友情链接