VB.NET三层数据结构构建方式分析

开发 后端
VB.NET三层数据结构包括表示层;业务层以及数据层这三方面。下面我们将会针对这三层的创建步骤进行一个介绍,增加大家对此的理解程度。

VB.NET的编写方式和其他语言相比有许多不同之处,比如在构建三层架构方面。我们就可以通过本文介绍的内容对此进行一个详细的解读。我们主要介绍的是VB.NET三层数据结构的实现,以及将介绍如何创建一个Web Service服务。#t#

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

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

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

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

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

VB.NET三层数据结构实例:

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

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

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

表示层:我们写一个Windows Form

第一步:创建WebService.

VB.NET三层数据结构具体步骤如下:

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. customer_da.Fill
    (Super_ds1.Customers)  
  3. order_da.Fill(Super_ds1.Orders)  
  4. Return Super_ds1  
  5. End Function  
  6. < WebMethod()> Public 
    Sub Update_Dataset()  
  7. Super_ds1.AcceptChanges()  
  8. End Sub 

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

业务层的完整代码如下:

  1. Imports System.Web.Services  
  2. Public Class Service1  
  3. Inherits System.Web.Services
    .WebService  
  4. ‘Web Services Designer 
    Generated Code……。  
  5. < WebMethod()> Public Function 
    Get_Dataset() As super_ds  
  6. customer_da.Fill(Super_ds1.Customers)  
  7. order_da.Fill(Super_ds1.Orders)  
  8. Return Super_ds1  
  9. End Function  
  10. < WebMethod()> Public Sub 
    Update_Dataset()  
  11. Super_ds1.AcceptChanges()  
  12. End Sub  
  13. ' WEB SERVICE EXAMPLE  
  14. ' The HelloWorld() example service 
    returns the string Hello World.  
  15. ' To build, uncomment the following
     lines then save and build the project.  
  16. ' To test this web service, ensure 
    that the .asmx file is the start page  
  17. ' and press F5.  
  18. '  
  19. '< WebMethod()> Public Function
     HelloWorld() As String  
  20. HelloWorld = "Hello World" 
  21. ' End Function  
  22. End Class 

VB.NET三层数据结构之创建表示层

具体步骤如下:

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

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

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

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

  1. Dim Customer_Ds As New 
    localhost.super_ds()  
  2. Dim ser1 As New local
    host.Service1()  
  3. Customer_Ds.Merge
    (ser1.Get_Dataset)  
  4. DataGrid1.DataSource 
    Customer_Ds 

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

#p#

表示层的完整代码如下:

  1. Imports Data_Access_表示层  
  2. Public Class Form1  
  3. Inherits System.Windows.Forms.Form  
  4. #Region " Windows Form Designer 
    generated code "  
  5. Public Sub New()  
  6. MyBase.New()  
  7. 'This call is required by the 
    Windows Form Designer.  
  8. InitializeComponent()  
  9. 'Add any initialization after the 
    InitializeComponent() call  
  10. End Sub  
  11. 'Form overrides dispose to clean 
    up the component list.  
  12. Protected Overloads Overrides Sub 
    Dispose(ByVal disposing As Boolean)  
  13. If disposing Then  
  14. If Not (components Is Nothing) Then  
  15. components.Dispose()  
  16. End If  
  17. End If  
  18. MyBase.Dispose(disposing)  
  19. End Sub  
  20. Friend WithEvents Button1 As 
    System.Windows.Forms.Button  
  21. Friend WithEvents Button2 As 
    System.Windows.Forms.Button  
  22. Friend WithEvents Button3 As 
    System.Windows.Forms.Button  
  23. Friend WithEvents Client_DataSet 
    As Data_Access_表示层。localhost.super_ds  
  24. Friend WithEvents DataGrid1 As 
    System.Windows.Forms.DataGrid  
  25. 'Required by the Windows Form Designer  
  26. Private components As System.
    ComponentModel.Container  
  27. 'NOTE: The following procedure is 
    required by the Windows Form Designer  
  28. 'It can be modified using the 
    Windows Form Designer.  
  29. 'Do not modify it using the code editor.  
  30. < System.Diagnostics.Debugger
    StepThrough
    ()> Private Sub 
    InitializeComponent()  
  31. Me.Button1 = New System.
    Windows.Forms.Button()  
  32. Me.Button2 = New System.
    Windows.Forms.Button()  
  33. Me.Button3 = New System.
    Windows.Forms.Button()  
  34. Me.Client_DataSet = New 
    Data_Access_表示层。localhost
    .super_ds()  
  35. Me.DataGrid1 = New System.Windows.
    Forms.DataGrid()  
  36. CType(Me.Client_DataSet, System
    .ComponentModel.ISupportInitialize)。
    BeginInit()  
  37. CType(Me.DataGrid1, System.
    ComponentModel.ISupportInitialize)。
    BeginInit()  
  38. Me.SuspendLayout()  
  39. '  
  40. 'Button1  
  41. '  
  42. Me.Button1.Location = New System.
    Drawing.Point(88, 360)  
  43. Me.Button1.Name = "Button1" 
  44. Me.Button1.TabIndex = 0 
  45. Me.Button1.Text = "load" 
  46. '  
  47. 'Button2  
  48. '  
  49. Me.Button2.Location = New System.
    Drawing.Point(232, 360)  
  50. Me.Button2.Name = "Button2" 
  51. Me.Button2.TabIndex = 1 
  52. Me.Button2.Text = "update" 
  53. '  
  54. 'Button3  
  55. '  
  56. Me.Button3.Location = New System
    .Drawing.Point(376, 360)  
  57. Me.Button3.Name = "Button3" 
  58. Me.Button3.TabIndex = 2 
  59. Me.Button3.Text = "clear" 
  60. '  
  61. 'Client_DataSet  
  62. '  
  63. Me.Client_DataSet.DataSetName = 
    "Client_DataSet" 
  64. Me.Client_DataSet.Locale = New
     System.Globalization.CultureInfo("zh-CN")  
  65. Me.Client_DataSet.Namespace = 
    "http://www.tempuri.org/CustomerDs.xsd" 
  66. '  
  67. 'DataGrid1  
  68. '  
  69. Me.DataGrid1.DataMember = "" 
  70. Me.DataGrid1.Location = New 
    System.Drawing.Point(40, 56)  
  71. Me.DataGrid1.Name = "DataGrid1" 
  72. Me.DataGrid1.Size = New System.
    Drawing.Size(480, 264)  
  73. Me.DataGrid1.TabIndex = 3 
  74. '  
  75. 'Form1  
  76. '  
  77. Me.AutoScaleBaseSize = New 
    System.Drawing.Size(6, 14)  
  78. Me.ClientSize = New System.
    Drawing.Size(568, 429)  
  79. Me.Controls.AddRange(New 
    System.Windows.Forms.Control() 
    {Me.DataGrid1, Me.Button3, 
    Me.Button2, Me.Button1})  
  80. Me.Name = "Form1" 
  81. Me.Text = "Form1" 
  82. CType(Me.Client_DataSet, 
    System.ComponentModel.
    ISupportInitialize)。EndInit()  
  83. CType(Me.DataGrid1, System.
    ComponentModel.ISupportInitialize)。EndInit()  
  84. Me.ResumeLayout(False)  
  85. End Sub  
  86. #End Region  
  87. Private Sub Button1_Click(ByVal 
    sender As System.Object, ByVal e 
    As System.EventArgs) Handles Button1.Click  
  88. Dim Customer_Ds As New localhost.super_ds()  
  89. Dim ser1 As New localhost.Service1()  
  90. Customer_Ds.Merge(ser1.Get_Dataset)  
  91. DataGrid1.DataSource = Customer_Ds 
  92. End Sub  
  93. End Class 

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

责任编辑:曹凯 来源: 中国IT实验室
相关推荐

2009-10-28 14:34:44

VB.NET Tree

2014-06-05 11:15:21

eBay大数据

2010-01-12 18:12:58

VB.NET事件

2009-11-10 17:31:38

VB.NET注册表

2009-11-02 17:12:01

VB和VB.NET

2009-10-28 10:04:53

VB.NET XmlW

2010-01-12 14:02:14

VB.NET数据实体层

2010-01-22 10:41:33

VB.NET声明结构

2009-07-28 17:25:14

ASP.NET三层结构

2009-10-14 14:19:00

VB.NET创建表示层

2010-01-14 15:15:22

VB.NET数据行处理

2009-10-13 09:24:57

VB.NET Dock

2009-10-14 15:20:21

VB.NET窗体指针

2009-10-15 10:57:16

VB.NET Text

2009-11-04 10:54:53

VB.NET MOVE

2009-10-27 18:06:41

VB.NET开发控件

2009-10-12 13:11:48

VB.NET使用线程

2009-11-04 09:32:12

VB.NET Auto

2009-10-29 15:16:02

VB.NET文件传送

2009-10-09 17:40:38

VB.Net问题集
点赞
收藏

51CTO技术栈公众号