[b]1.[/b][b]概论:[/b]

  本文将介绍如何创建一个三层应用程序,并且将介绍如何创建一个Web Service服务。
  ADO.NET创建Windows三层结构应用程序的体系架构如下图所示:
[attach]56026[/attach]
  该结构分三个层次:表示层、业务层、数据层。
  数据层:代表物理[url=http://www.bc-cn.net/Article/sjk/Index.html]数据库[/url]。
  业务层:负责数据层与表示层之间的数据传输。
  表示层:应用程序的客户端,它通过业务层来访问[url=http://www.bc-cn.net/Article/sjk/Index.html]数据库[/url]。
  表示层所操作的是驻留在内存中的本地数据,当需要更新[url=http://www.bc-cn.net/Article/sjk
/Index.html]数据库[/url]数据时,要通过业务层提供的更新方法实现。这样可以大大提高应用程序的性能,而且,什么时候更新数据完全由你
决定,提高了编程的灵活性。
  [b]2.实例:[/b]
  这里我们具体做一个实例来看看如何用[url=http://www.bc-cn.net/Article/kfyy/vb/Index.html]VB[/url].NET创建三层结构的应用程序。
  [url=http://www.bc-cn.net/Article/sjk/Index.html]数据库[/url]:我们选择
[url=http://www.bc-cn.net/Article/sjk/sqlserver/Index.html]SQL
Server[/url]
的NorthWind[url=http://www.bc-cn.net/Article/sjk/Index.html]数据库[/url]。
  业务层:我们创建一个WebService作为中间层。(需要安装IIS服务)
  表示层:我们写一个Windows Form
[b]第一步:创建WebService。[/b]
  具体步骤如下:
  1.新建一个项目,选择[url=http://www.bc-cn.net/Article/net/aspx/Index.html]ASP.NET[/url] Web服务,命名为:”WebService For 业务层”。
  2.添加两个Sql
DataAdapter,一个为Customer_da,它指向NorthWind数据库的Customers表,另一个为Order_da,指向
Northwind[url=http://www.bc-cn.net/Article/sjk/Index.html]数据库[/url]的
Orders表。
  3.然后生成一个Typed DataSet(选择“数据”菜单的“生成数据集”),命名为:Super_ds.
  4.数据库连接已经完成,下一步我们将考虑它与表示层之间的通信,这里我们定义两个方法。一个为:Get_DataSet,它返回一个
Super_ds类型的数据集,另一个为:Update_DataSet,它负责更新[url=http://www.bc-cn.net
/Article/sjk/Index.html]数据库[/url]数据, 方法代码如下:

<WebMethod()> Public Function Get_Dataset() As super_ds
    customer_da.Fill(Super_ds1.Customers)
    order_da.Fill(Super_ds1.Orders)
    Return Super_ds1
  End Function
<WebMethod()> Public Sub Update_Dataset()
    Super_ds1.AcceptChanges()
End Sub
  你可以运行测试一下你建立的这个WebService。它将提供两个方法。返回的DataSet是以[url=http://www.bc-cn.net/Article/web/xml/Index.html]XML[/url]表示的。
  业务层的完整代码如下:
[url=http://zu.xmhouse.com/Rent/t1_r3502050000_a3502050002_1.html]湖滨路房屋出租[/url]
Imports System.Web.Services
Public Class Service1
Inherits System.Web.Services.WebService
‘Web Services Designer Generated Code…….
<WebMethod()> Public Function Get_Dataset() As super_ds
    customer_da.Fill(Super_ds1.Customers)
    order_da.Fill(Super_ds1.Orders)
    Return Super_ds1
  End Function
<WebMethod()> Public Sub Update_Dataset()
    Super_ds1.AcceptChanges()
  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

[url=http://zu.xmhouse.com/Rent/t1_r3502050000_a3502050003_1.html]沧林路出租房[/url]

 

[b]第二步:创建表示层[/b]
  具体步骤如下:
  1.新建一个Windows应用程序,命名为:“Windows Form For 表示层”。
  2.在窗体上添加一个DataGrid,一个Button,Button1的text为“Load”,作用是:从业务层读取数据。
  3.在解决方案窗体中添加Web 引用,将我们自己建立的Web Service for 业务层引入到当前项目中。
  4.向Button1的Click[url=http://www.bc-cn.net/Article
/Search.asp?Field=Title&ClassID=&keyword=%CA%C2%BC%FE]事件[/url]添加
如下代码:

   Dim Customer_Ds As New localhost.super_ds()
    Dim ser1 As New localhost.Service1()
    Customer_Ds.Merge(ser1.Get_Dataset)
    DataGrid1.DataSource = Customer_Ds
  这里我们调用了Web
Service的Get_DataSet[url=http://www.bc-cn.net/Article
/Search.asp?Field=Title&ClassID=&keyword=%BA%AF%CA%FD]函数
[/url],Update_DataSet方法的调用与此完全相同。
  表示层的完整代码如下:

Imports Data_[url=http://www.bc-cn.net/Article/sjk/access/Index.html]ACCESS[/url]_表示层
Public Class Form1
  Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
  Public Sub New()
    MyBase.New()
    '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
        components.Dispose()
      End If
    End If
    MyBase.Dispose(disposing)
  End Sub
  Friend WithEvents Button1 As System.Windows.Forms.Button
  Friend WithEvents Button2 As System.Windows.Forms.Button
  Friend WithEvents Button3 As System.Windows.Forms.Button
    Friend WithEvents Client_DataSet As
Data_[url=http://www.bc-cn.net/Article/sjk/access
/Index.html]ACCESS[/url]_表示层.localhost.super_ds
  Friend WithEvents DataGrid1 As System.Windows.Forms.DataGrid
  'Required by the Windows Form Designer
  Private components As System.ComponentModel.Container
  '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.
  <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
    Me.Button1 = New System.Windows.Forms.Button()
    Me.Button2 = New System.Windows.Forms.Button()
    Me.Button3 = New System.Windows.Forms.Button()
    Me.Client_DataSet = New Data_[url=http://www.bc-cn.net/Article/sjk/access/Index.html]ACCESS[/url]_表示层.localhost.super_ds()
    Me.DataGrid1 = New System.Windows.Forms.DataGrid()
    CType(Me.Client_DataSet, System.ComponentModel.ISupportInitialize).BeginInit()
    CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).BeginInit()
    Me.SuspendLayout()
    '
    'Button1
    '
    Me.Button1.Location = New System.Drawing.Point(88, 360)
    Me.Button1.Name = "Button1"
    Me.Button1.TabIndex = 0
    Me.Button1.Text = "load"
    '
    'Button2
    '
    Me.Button2.Location = New System.Drawing.Point(232, 360)
    Me.Button2.Name = "Button2"
    Me.Button2.TabIndex = 1
    Me.Button2.Text = "update"
    '
    'Button3
    '
    Me.Button3.Location = New System.Drawing.Point(376, 360)
    Me.Button3.Name = "Button3"
    Me.Button3.TabIndex = 2
    Me.Button3.Text = "clear"
    '
    'Client_DataSet
    '
    Me.Client_DataSet.DataSetName = "Client_DataSet"
    Me.Client_DataSet.Locale = New System.Globalization.CultureInfo("zh-CN")
    Me.Client_DataSet.Namespace = "http://www.tempuri.org/CustomerDs.xsd"
    '
    'DataGrid1
    '
    Me.DataGrid1.DataMember = ""
    Me.DataGrid1.Location = New System.Drawing.Point(40, 56)
    Me.DataGrid1.Name = "DataGrid1"
    Me.DataGrid1.Size = New System.Drawing.Size(480, 264)
    Me.DataGrid1.TabIndex = 3
    '
    'Form1
    '
    Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
    Me.ClientSize = New System.Drawing.Size(568, 429)
    Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.DataGrid1, Me.Button3, Me.Button2, Me.Button1})
    Me.Name = "Form1"
    Me.Text = "Form1"
    CType(Me.Client_DataSet, System.ComponentModel.ISupportInitialize).EndInit()
    CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).EndInit()
    Me.ResumeLayout(False)
  End Sub
#End Region
  Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
      Dim Customer_Ds As New localhost.super_ds()
      Dim ser1 As New localhost.Service1()
      Customer_Ds.Merge(ser1.Get_Dataset)
      DataGrid1.DataSource = Customer_Ds
      End Sub
  End Class
  [b]总结:[/b]可见,表示层窗体上完全没有数据库连接控件,它与数据库的连接任务是通过业务层来完成的,这样,程序的结构更加清晰,当然业务层
的实现也可以用其他方法,比如:写一个自己的类来完成与[url=http://www.bc-cn.net/Article/sjk
/Index.html]数据库[/url]的数据传输。

[[i] 本帖最后由 wangbingxin 于 2007-8-22 13:36 编辑 [/i]]

如何用VB.Net创建一个三层的数据库应用程序的更多相关文章

  1. 如何用 React Native 创建一个iOS APP?(三)

    前两部分,<如何用 React Native 创建一个iOS APP?>,<如何用 React Native 创建一个iOS APP (二)?>中,我们分别讲了用 React ...

  2. 如何用 React Native 创建一个iOS APP?(二)

    我们书接上文<如何用 React Native 创建一个iOS APP?>,继续来讲如何用 React Native 创建一个iOS APP.接下来,我们会涉及到很多控件. 1 AppRe ...

  3. Cordova之如何用命令行创建一个项目(完整示例)

    原文:Cordova之如何用命令行创建一个项目(完整示例) 1. 创建cordova项目 (注意:当第一次创建或编译项目的时候,可能系统会自动下载一些东西,需要一些时间.) 在某个目录下创建cordo ...

  4. MVVM之旅(1)创建一个最简单的MVVM程序

    这是MVVM之旅系列文章的第一篇,许多文章和书喜欢在开篇介绍某种技术的诞生背景和意义,但是我觉得对于程序员来说,一个能直接运行起来的程序或许能够更直观的让他们了解这种技术.在这篇文章里,我将带领大家一 ...

  5. 在VS中手工创建一个最简单的WPF程序

    如果不用VS的WPF项目模板,如何手工创建一个WPF程序呢?我们来模仿WPF模板,创建一个最简单的WPF程序. 第一步:文件——新建——项目——空项目,创建一个空项目. 第二步:添加引用,Presen ...

  6. 在C#/.NET应用程序开发中创建一个基于Topshelf的应用程序守护进程(服务)

    本文首发于:码友网--一个专注.NET/.NET Core开发的编程爱好者社区. 文章目录 C#/.NET基于Topshelf创建Windows服务的系列文章目录: C#/.NET基于Topshelf ...

  7. 创建一个Orchard Core CMS 应用程序

    开始使用Orchard Core作为NuGet软件包 在本文中,我们将看到使用Orchard Core提供的NuGet包创建CMS Web应用程序是多么容易. 你可以在这里找到Chris Payne写 ...

  8. 如何用 React Native 创建一个iOS APP?

    诚然,React Native 结合了 Web 应用和 Native 应用的优势,可以使用 JavaScript 来开发 iOS 和 Android 原生应用.在 JavaScript 中用 Reac ...

  9. 如何在HoloLens中创建一个2D的Hello World程序

    注:本文提及到的代码示例下载地址 > How to build an "Hello World" 2D app in HololLens. HoloLens 是微软的一款MR ...

随机推荐

  1. leetcode 6. ZigZag Conversion

    https://leetcode.com/problems/zigzag-conversion/ 题目: 将字符串转化成zigzag模式. 例如 "abcdefghijkmlnpq" ...

  2. java hashCode方法返回值

    hashCode 是和内存地址相关的一个整数. HashCode只是在需要用到哈希算法的数据结构中才有用 用途是为了方便快速地查找对象: HashMap 是根据键对象的 HashCode 来进行快速查 ...

  3. 15.6.2 Configuring the Merge Threshold for index pages[innodb]

    MERGE THRESHOLD 提供了可以合并相邻索引page的功能. 默认值是50 如果一个页中数据被删除或者更新减小,导致页中有空白部分,空白部分接近合并门槛的值,则会和相邻页合并, 但是两个pa ...

  4. js弹框3秒后自动消失

    开发中有时候会需要最出弹框后,过几秒自动消失的效果,下面给大家分享一下我自己做的一个小案例. 案例中的弹框使用的是bootstrap里面的模态框,实现自动消失则用的是js中的setInterval方法 ...

  5. Myeclipse2016部署tomcat服务(别的服务类似)配置环境

    1.在工具MyEclipse的项目管理菜单中,右单机找Properties或者快捷键alt+enter,(或者直接搜索Runtimes)myEclipse/Targeted Runtimes 2.ne ...

  6. MySQL中auto_increment的基本特性

    创建数据表时,经常会出现auto_increment这个词,下面就来了解一下它吧. MySQL的中AUTO_INCREMENT类型的属性用于为一个表中记录自动生成ID功能,可在一定程度上代替Oracl ...

  7. 后缀数组 & 题目

    后缀数组被称为字符串处理神器,要解决字符串问题,一定要掌握它.(我这里的下标全部都是从1开始) 首先后缀数组要处理出两个数组,一个是sa[],sa[i]表示排名第i为的后缀的起始位置是什么,rank[ ...

  8. GTD

    这两天坚持GTD,四分象限法管理时间,感觉学习专注度明显提升,一直没完成的马士兵JAVA基础整到第八章了,继续保持,1.13号前争取11章全整完. 3个点支撑起你的职业发展:技术,管理(管理自己.管理 ...

  9. 在浏览器地址栏按回车、F5、Ctrl+F5刷新网页的区别

    不少同学问,不都是刷新吗?还有什么区别?其实,还是有的. 其中,在地址栏按回车又分为两种情况.一是请求的URI在浏览器缓存中未过期,此时,使用Firefox的firebug插件在浏览器里显示的HTTP ...

  10. 如何在string.Format()方法中输出大括号

    在string.Format参数中,大括号{}是有特殊意义的符号,但是如果我们希望最终的结果中包含大括号({}),那么我们需要怎么做呢?是”\{”吗?很遗憾,运行时,会给你一个Exception的!正 ...