如何用VB.Net创建一个三层的数据库应用程序(转贴)

作者: rcs

1. 概论:

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

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

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

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

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

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

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

2.实例:

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

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

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

表示层:我们写一个Windows Form

第一步:创建WebService。

具体步骤如下:

1. 新建一个项目,选择ASP.NET 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,它负责更新数据库数据, 方法代码如下:

  1<webmethod()> Public Function Get_Dataset() As super_ds   
  2  
  3customer_da.Fill(Super_ds1.Customers)   
  4  
  5order_da.Fill(Super_ds1.Orders)   
  6  
  7Return Super_ds1   
  8  
  9End Function   
 10  
 11<webmethod()> Public Sub Update_Dataset()   
 12  
 13Super_ds1.AcceptChanges()   
 14  
 15End Sub   
 16  
 17你可以运行测试一下你建立的这个WebService。它将提供两个方法。返回的DataSet是以XML表示的。   
 18  
 19业务层的完整代码如下:   
 20  
 21Imports System.Web.Services   
 22  
 23Public Class Service1   
 24  
 25Inherits System.Web.Services.WebService   
 26  
 27‘Web Services Designer Generated Code…….   
 28  
 29<webmethod()> Public Function Get_Dataset() As super_ds   
 30  
 31customer_da.Fill(Super_ds1.Customers)   
 32  
 33order_da.Fill(Super_ds1.Orders)   
 34  
 35Return Super_ds1   
 36  
 37End Function   
 38  
 39<webmethod()> Public Sub Update_Dataset()   
 40  
 41Super_ds1.AcceptChanges()   
 42  
 43End Sub   
 44  
 45' WEB SERVICE EXAMPLE   
 46  
 47' The HelloWorld() example service returns the string Hello World.   
 48  
 49' To build, uncomment the following lines then save and build the project.   
 50  
 51' To test this web service, ensure that the .asmx file is the start page   
 52  
 53' and press F5.   
 54  
 55'   
 56  
 57'<webmethod()> Public Function HelloWorld() As String   
 58  
 59' HelloWorld = "Hello World"   
 60  
 61' End Function   
 62  
 63End Class   
 64  
 65第二步:创建表示层   
 66  
 67具体步骤如下:   
 68  
 691\. 新建一个Windows应用程序,命名为:“Windows Form For 表示层”。   
 70  
 712\. 在窗体上添加一个DataGrid,一个Button,Button1的text为“Load”,作用是:从业务层读取数据。   
 72  
 733\. 在解决方案窗体中添加Web 引用,将我们自己建立的Web Service for 业务层引入到当前项目中。   
 74  
 754\. 向Button1的Click事件添加如下代码:   
 76  
 77Dim Customer_Ds As New localhost.super_ds()   
 78  
 79Dim ser1 As New localhost.Service1()   
 80  
 81Customer_Ds.Merge(ser1.Get_Dataset)   
 82  
 83DataGrid1.DataSource = Customer_Ds   
 84  
 85这里我们调用了Web Service的Get_DataSet函数,Update_DataSet方法的调用与此完全相同。   
 86  
 87表示层的完整代码如下:   
 88  
 89Imports Data_Access_表示层   
 90  
 91Public Class Form1   
 92  
 93Inherits System.Windows.Forms.Form   
 94  
 95#Region " Windows Form Designer generated code "   
 96  
 97Public Sub New()   
 98  
 99MyBase.New()   
100  
101'This call is required by the Windows Form Designer.   
102  
103InitializeComponent()   
104  
105'Add any initialization after the InitializeComponent() call   
106  
107End Sub   
108  
109'Form overrides dispose to clean up the component list.   
110  
111Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)   
112  
113If disposing Then   
114  
115If Not (components Is Nothing) Then   
116  
117components.Dispose()   
118  
119End If   
120  
121End If   
122  
123MyBase.Dispose(disposing)   
124  
125End Sub   
126  
127Friend WithEvents Button1 As System.Windows.Forms.Button   
128  
129Friend WithEvents Button2 As System.Windows.Forms.Button   
130  
131Friend WithEvents Button3 As System.Windows.Forms.Button   
132  
133Friend WithEvents Client_DataSet As Data_Access_表示层.localhost.super_ds   
134  
135Friend WithEvents DataGrid1 As System.Windows.Forms.DataGrid   
136  
137'Required by the Windows Form Designer   
138  
139Private components As System.ComponentModel.Container   
140  
141'NOTE: The following procedure is required by the Windows Form Designer   
142  
143'It can be modified using the Windows Form Designer.   
144  
145'Do not modify it using the code editor.   
146  
147<system.diagnostics.debuggerstepthrough()> Private Sub InitializeComponent()   
148  
149Me.Button1 = New System.Windows.Forms.Button()   
150  
151Me.Button2 = New System.Windows.Forms.Button()   
152  
153Me.Button3 = New System.Windows.Forms.Button()   
154  
155Me.Client_DataSet = New Data_Access_表示层.localhost.super_ds()   
156  
157Me.DataGrid1 = New System.Windows.Forms.DataGrid()   
158  
159CType(Me.Client_DataSet, System.ComponentModel.ISupportInitialize).BeginInit()   
160  
161CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).BeginInit()   
162  
163Me.SuspendLayout()   
164  
165'   
166  
167'Button1   
168  
169'   
170  
171Me.Button1.Location = New System.Drawing.Point(88, 360)   
172  
173Me.Button1.Name = "Button1"   
174  
175Me.Button1.TabIndex = 0   
176  
177Me.Button1.Text = "load"   
178  
179'   
180  
181'Button2   
182  
183'   
184  
185Me.Button2.Location = New System.Drawing.Point(232, 360)   
186  
187Me.Button2.Name = "Button2"   
188  
189Me.Button2.TabIndex = 1   
190  
191Me.Button2.Text = "update"   
192  
193'   
194  
195'Button3   
196  
197'   
198  
199Me.Button3.Location = New System.Drawing.Point(376, 360)   
200  
201Me.Button3.Name = "Button3"   
202  
203Me.Button3.TabIndex = 2   
204  
205Me.Button3.Text = "clear"   
206  
207'   
208  
209'Client_DataSet   
210  
211'   
212  
213Me.Client_DataSet.DataSetName = "Client_DataSet"   
214  
215Me.Client_DataSet.Locale = New System.Globalization.CultureInfo("zh-CN")   
216  
217Me.Client_DataSet.Namespace = "http://www.tempuri.org/CustomerDs.xsd"   
218  
219'   
220  
221'DataGrid1   
222  
223'   
224  
225Me.DataGrid1.DataMember = ""   
226  
227Me.DataGrid1.Location = New System.Drawing.Point(40, 56)   
228  
229Me.DataGrid1.Name = "DataGrid1"   
230  
231Me.DataGrid1.Size = New System.Drawing.Size(480, 264)   
232  
233Me.DataGrid1.TabIndex = 3   
234  
235'   
236  
237'Form1   
238  
239'   
240  
241Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)   
242  
243Me.ClientSize = New System.Drawing.Size(568, 429)   
244  
245Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.DataGrid1, Me.Button3, Me.Button2, Me.Button1})   
246  
247Me.Name = "Form1"   
248  
249Me.Text = "Form1"   
250  
251CType(Me.Client_DataSet, System.ComponentModel.ISupportInitialize).EndInit()   
252  
253CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).EndInit()   
254  
255Me.ResumeLayout(False)   
256  
257End Sub   
258  
259#End Region   
260  
261Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click   
262  
263Dim Customer_Ds As New localhost.super_ds()   
264  
265Dim ser1 As New localhost.Service1()   
266  
267Customer_Ds.Merge(ser1.Get_Dataset)   
268  
269DataGrid1.DataSource = Customer_Ds   
270  
271End Sub   
272  
273End Class   
274  
275总结:可见,表示层窗体上完全没有数据库连接控件,它与数据库的连接任务是通过业务层来完成的,这样,程序的结构更加清晰,当然业务层的实现也可以用其他方法,比如:写一个自己的类来完成与数据库的数据传输。   
276  
277(转自51dotnet)</system.diagnostics.debuggerstepthrough()></webmethod()></webmethod()></webmethod()></webmethod()></webmethod()>
Published At
Categories with Web编程
Tagged with
comments powered by Disqus