详解Silverlight与Access互操作的具体实现

Silverlight与Access互操作是一个很基础的问题,主要涉及到数据库的操作。Access属于轻量级的数据库,应用起来还是比较方便的。创新互联推荐《
走向银光 —— 一步一步学Silverlight》

成都创新互联自2013年起,先为宝兴等服务建站,宝兴等地企业,进行企业商务咨询服务。为宝兴企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。

在开发一些小型应用程序时,我们就需要使用一些小巧的轻量级的数据库,比如Access数据库。由于Visual Studio中并没有直接提供Silverlight与Access互操作的系列方法。于是本文就将为大家介绍如何让Silverlight使用Access作为后台数据库。

准备工作

1)建立起测试项目

细节详情请见强大的DataGrid组件[2]_数据交互之ADO.NET Entity Framework——Silverlight学习笔记[10]。

2)创建测试用数据库

如下图所示,创建一个名为Employees.mdb的Access数据库,建立数据表名称为Employee。将该数据库置于作为服务端的项目文件夹下的App_Data文件夹中,便于操作管理。

建立数据模型

EmployeeModel.cs文件(放置在服务端项目文件夹下)

 
 
 
 
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace datagridnaccessdb
  5. {
  6.     public class EmployeeModel
  7.     {
  8.         public int EmployeeID { get; set; }
  9.         public string EmployeeName { get; set; }
  10.         public int EmployeeAge { get; set; }
  11.     }
  12. }

建立服务端Web Service

右击服务端项目文件夹,选择Add->New Item....,按下图所示建立一个名为EmployeesInfoWebService.asmx的Web Service,作为Silverlight与Access数据库互操作的桥梁。

创建完毕后,双击EmployeesInfoWebService.asmx打开该文件。将里面的内容修改如下:

 
 
 
 
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Services;
  6. using System.Data.OleDb;//引入该命名空间为了操作Access数据库
  7. using System.Data;
  8. namespace datagridnaccessdb
  9. {
  10.     /// 
  11.     /// Summary description for EmployeesInfoWebService
  12.     /// 
  13.     [WebService(Namespace = "http://tempuri.org/")]
  14.     [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
  15.     [System.ComponentModel.ToolboxItem(false)]
  16.     // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
  17.     // [System.Web.Script.Services.ScriptService]
  18.     public class EmployeesInfoWebService : System.Web.Services.WebService
  19.     {
  20.         [WebMethod]//获取雇员信息
  21.         public List GetEmployeesInfo()
  22.         {
  23.             List returnedValue = new List();
  24.             OleDbCommand Cmd = new OleDbCommand();
  25.             SQLExcute("SELECT * FROM Employee", Cmd);
  26.             OleDbDataAdapter EmployeeAdapter = new OleDbDataAdapter();
  27.             EmployeeAdapter.SelectCommand = Cmd;
  28.             DataSet EmployeeDataSet = new DataSet();
  29.             EmployeeAdapter.Fill(EmployeeDataSet);
  30.             foreach (DataRow dr in EmployeeDataSet.Tables[0].Rows)
  31.             {
  32.                 EmployeeModel tmp = new EmployeeModel();
  33.                 tmp.EmployeeID = Convert.ToInt32(dr[0]);
  34.                 tmp.EmployeeName = Convert.ToString(dr[1]);
  35.                 tmp.EmployeeAge = Convert.ToInt32(dr[2]);
  36.                 returnedValue.Add(tmp);
  37.             }
  38.             return returnedValue;
  39.         }
  40.        [WebMethod] //添加雇员信息
  41.         public void Insert(List employee)
  42.         {
  43.             employee.ForEach( x => 
  44.            {
  45.                 string CmdText = "INSERT INTO Employee(EmployeeName,EmployeeAge) VALUES('"+x.EmployeeName+"',"+x.EmployeeAge.ToString()+")";
  46.                 SQLExcute(CmdText);
  47.             });
  48.         }
  49.         [WebMethod] //更新雇员信息
  50.        public void Update(List employee)
  51.         {
  52.            employee.ForEach(x =>
  53.             {
  54.                 string CmdText = "UPDATE Employee SET EmployeeName='"+x.EmployeeName+"',EmployeeAge="+x.EmployeeAge.ToString();
  55.                 CmdText += " WHERE EmployeeID="+x.EmployeeID.ToString();
  56.                 SQLExcute(CmdText);
  57.             });
  58.         }
  59.         [WebMethod] //删除雇员信息
  60.        public void Delete(List employee)
  61.         {
  62.             employee.ForEach(x =>
  63.             {
  64.                 string CmdText = "DELETE FROM Employee WHERE EmployeeID="+x.EmployeeID.ToString();
  65.                 SQLExcute(CmdText);
  66.             });
  67.         }
  68.        //执行SQL命令文本,重载1
  69.         private void SQLExcute(string SQLCmd)
  70.         {
  71.             string ConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=" + Server.MapPath(@"App_Data\Employees.mdb;");
  72.             OleDbConnection Conn = new OleDbConnection(ConnectionString);
  73.             Conn.Open();
  74.             OleDbCommand Cmd = new OleDbCommand();
  75.             Cmd.Connection = Conn;
  76.             Cmd.CommandTimeout = 15;
  77.             Cmd.CommandType = CommandType.Text;
  78.             Cmd.CommandText = SQLCmd;
  79.             Cmd.ExecuteNonQuery();
  80.             Conn.Close();
  81.         }
  82.         //执行SQL命令文本,重载2
  83.         private void SQLExcute(string SQLCmd,OleDbCommand Cmd)
  84.         {
  85.             string ConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=" + Server.MapPath(@"App_Data\Employees.mdb;");
  86.             OleDbConnection Conn = new OleDbConnection(ConnectionString);
  87.             Conn.Open();
  88.             Cmd.Connection = Conn;
  89.             Cmd.CommandTimeout = 15;
  90.             Cmd.CommandType = CommandType.Text;
  91.             Cmd.CommandText = SQLCmd;
  92.             Cmd.ExecuteNonQuery();
  93.         }
  94.     }
  95. }

之后,在Silverlight客户端应用程序文件夹下,右击References文件夹,选择菜单选项Add Service Reference...。如下图所示,引入刚才我们创建的Web Service(别忘了按Discover按钮进行查找)。

创建Silverlight客户端应用程序

 
 
 
 
  1. MainPage.xaml文件
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  3.    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"     mc:Ignorable="d" xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data" xmlns:dataFormToolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.DataForm.Toolkit" x:Class="SilverlightClient.MainPage"
  5.     d:DesignWidth="320" d:DesignHeight="240">
  6.  x:Name="LayoutRoot" Width="320" Height="240" Background="White">
  7.   x:Name="dfEmployee" Margin="8,8,8,42"/>
  8.  x:Name="btnGetData" Height="30" Margin="143,0,100,8" VerticalAlignment="Bottom" Content="Get Data" Width="77"/>
  9.  x:Name="btnSaveAll" Height="30" Margin="0,0,8,8" VerticalAlignment="Bottom" Content="Save All" HorizontalAlignment="Right" Width="77"/>
  10.  x:Name="tbResult" Height="30" HorizontalAlignment="Left" Margin="8,0,0,8" VerticalAlignment="Bottom" Width="122" TextWrapping="Wrap" FontSize="16"/>
  11. MainPage.xaml.cs文件
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Collections.ObjectModel;
  15. using System.Linq;
  16. using System.Net;
  17. using System.Windows;
  18. using System.Windows.Controls;
  19. using System.Windows.Documents;
  20. using System.Windows.Input;
  21. using System.Windows.Media;
  22. using System.Windows.Media.Animation;
  23. using System.Windows.Shapes;
  24. using System.Xml;
  25. using System.Xml.Linq;
  26. using System.Windows.Browser;
  27. using SilverlightClient.EmployeesInfoServiceReference;
  28. namespace SilverlightClient
  29. {
  30.     public partial class MainPage : UserControl
  31.     {
  32.         int originalNum;//记录初始时的Employee表中的数据总数
  33.         ObservableCollection deletedID = new ObservableCollection();//标记被删除的对象
  34.        public MainPage()
  35.         {
  36.             InitializeComponent();
  37.             this.Loaded += new RoutedEventHandler(MainPage_Loaded);
  38.             this.btnGetData.Click += new RoutedEventHandler(btnGetData_Click);
  39.             this.btnSaveAll.Click += new RoutedEventHandler(btnSaveAll_Click); 
  40.             this.dfEmployee.DeletingItem += new EventHandler(dfEmployee_DeletingItem);
  41.         }
  42.         void dfEmployee_DeletingItem(object sender, System.ComponentModel.CancelEventArgs e)
  43.         {
  44.             deletedID.Add(dfEmployee.CurrentItem as EmployeeModel);//正在删除时,将被删除对象进行标记,以便传给服务端真正删除。
  45.         }
  46.         void btnSaveAll_Click(object sender, RoutedEventArgs e)
  47.         {
  48.             List updateValues = dfEmployee.ItemsSource.Cast().ToList();
  49.             ObservableCollection returnValues = new ObservableCollection();
  50.             if (updateValues.Count > originalNum)
  51.             {
  52.                 //添加数据
  53.                 for (int i = originalNum; i <= updateValues.Count - 1; i++)
  54.                 {
  55.                     returnValues.Add(updateValues.ToArray()[i]);
  56.                 }
  57.                 EmployeesInfoWebServiceSoapClient webClient = new EmployeesInfoWebServiceSoapClient();
  58.                 webClient.InsertCompleted += new EventHandler(webClient_InsertCompleted);
  59.                 webClient.InsertAsync(returnValues);
  60.                 //必须考虑数据集中既有添加又有更新的情况
  61.                 returnValues.Clear();
  62.                 updateValues.ForEach(x => returnValues.Add(x));
  63.                 webClient.UpdateCompleted += new EventHandler(webClient_UpdateCompleted);
  64.                 webClient.UpdateAsync(returnValues);
  65.             }
  66.             else if (updateValues.Count < originalNum)
  67.             {
  68.                 //删除数据
  69.                 EmployeesInfoWebServiceSoapClient webClient = new EmployeesInfoWebServiceSoapClient();
  70.                 webClient.DeleteCompleted += new EventHandler(webClient_DeleteCompleted);
  71.                 webClient.DeleteAsync(deletedID);
  72.             }
  73.             else
  74.             {
  75.                //更新数据
  76.                 updateValues.ForEach(x => returnValues.Add(x));
  77.                 EmployeesInfoWebServiceSoapClient webClient = new EmployeesInfoWebServiceSoapClient();
  78.                 webClient.UpdateCompleted += new EventHandler(webClient_UpdateCompleted);
  79.                 webClient.UpdateAsync(returnValues);
  80.            }
  81.         }
  82.         void webClient_UpdateCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
  83.         {
  84.             tbResult.Text = "更新成功!";
  85.         }
  86.         void webClient_DeleteCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
  87.         {
  88.             tbResult.Text = "删除成功!";
  89.         }
  90.         void webClient_InsertCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
  91.         {
  92.             tbResult.Text = "添加成功!";
  93.         }
  94.         void btnGetData_Click(object sender, RoutedEventArgs e)
  95.         {
  96.             GetEmployees();
  97.         }
  98.         void MainPage_Loaded(object sender, RoutedEventArgs e)
  99.         {
  100.             GetEmployees();
  101.         }
  102.         void GetEmployees()
  103.         {
  104.             EmployeesInfoWebServiceSoapClient webClient = new EmployeesInfoWebServiceSoapClient();
  105.             webClient.GetEmployeesInfoCompleted +=
  106.             new EventHandler(webClient_GetEmployeesInfoCompleted);
  107.             webClient.GetEmployeesInfoAsync();
  108.         }
  109.         void webClient_GetEmployeesInfoCompleted(object sender, GetEmployeesInfoCompletedEventArgs e)
  110.         {
  111.             originalNum = e.Result.Count;//记录原始数据个数
  112.             dfEmployee.ItemsSource = e.Result;
  113.         }
  114.     }
  115. }

最终效果图

链接:http://www.cnblogs.com/Kinglee/archive/2009/09/05/1561021.html

网站题目:详解Silverlight与Access互操作的具体实现
新闻来源:http://www.mswzjz.cn/qtweb/news4/550204.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能