zoukankan
html css js c++ java
DataAdapter数据集DataSet和数据库的同步(4):数据适配器事件
/**/
/*
--===------------------------------------------===---
CommandBuilder:
如果DataTable映射到单个数据库表或者从单个数据库表生成,
可以利用CommandBuilder对象自动生成DataAdapter的3个命令:
DeleteCommand, UpdateCommand, InsertCommand.
为了生成Insert,Update,Delete语句,CommandBuilder会自动
使用SelectCommand属性来检索所需的元数据集.
SelectComandText里面必须要有主键字段,否则无法Builder~!
★数据适配器事件★
1.OnRowUpdating:在数据行更新前执行
2.OnRowUpdated:在数据行更新后执行,可以检查单条更新于巨的执行结果.
其EventArgs属性表如下
Command 要执行的数据库命令
Errors 错误
Row 要更新的行
StatementType 要执行的命令类型,可能为增删改查之一
RecordsAffected 要影响的行数
TableMapping 更新所使用的DataTableMapping
许明会 2007年12月22日 23:24:25
--===------------------------------------------===---
*/
using
System;
using
System.Data;
using
System.Data.SqlClient;
namespace
xumh
{
public
class
runMyApp
{
static
void
ShowTable(DataTable dataTable)
{
foreach
(DataRow row
in
dataTable.Rows)
{
for
(
int
i
=
0
;i
<
dataTable.Columns.Count; i
++
)
Console.Write(
"
{0}\t
"
,row[i]);
Console.WriteLine();
}
}
static
void
Main()
{
SqlConnection cn
=
new
SqlConnection(
@"
server=.; database=northwind; integrated security=true
"
);
//
预订事件
SqlDataAdapter da
=
new
SqlDataAdapter(
"
select employeeid,firstname,lastname,title from employees
"
,cn);
da.RowUpdating
+=
new
SqlRowUpdatingEventHandler(Updating);
da.RowUpdated
+=
new
SqlRowUpdatedEventHandler(Updated);
//
显示原始数据
DataSet dsEmployees
=
new
DataSet();
da.Fill(dsEmployees);
ShowTable(dsEmployees.Tables[
0
]);
//
更改数据
Console.ReadLine();
dsEmployees.Tables[
0
].Rows[
0
][
"
FirstName
"
]
=
"
Nancy
"
;
//
XuMinghui
SqlCommandBuilder builder
=
new
SqlCommandBuilder(da);
//
SqlCommandBuilder
//
Console.WriteLine(da.UpdateCommand.CommandText);
//
查看自动生成的CommandText
da.Update(dsEmployees);
ShowTable(dsEmployees.Tables[
0
]);
}
//
Updating:控制数据集的共享冲突,数据行只能被修改一次
static
void
Updating(
object
adapter, SqlRowUpdatingEventArgs e)
{
Console.WriteLine(
"
RowUpdating:
"
+
e.StatementType.ToString());
switch
(e.StatementType)
{
case
StatementType.Update:
{
SqlConnection cn
=
new
SqlConnection(
@"
server=.; database=northwind; integrated security=true
"
);
string
strCmd
=
"
select firstname,lastname from employees where firstname='
"
+
e.Row[
"
firstname
"
,DataRowVersion.Original]
+
"
'
"
;
//
上面,取firstname得原始值,如果数据库中查不到,证明正在试图修改已经修改过的数据集
SqlCommand cmd
=
new
SqlCommand(strCmd,cn);
cn.Open();
if
(
0
==
cmd.ExecuteNonQuery())
{
Console.WriteLine(
"
数据已经修改过,数据集过时!
"
);
e.Status
=
UpdateStatus.ErrorsOccurred;
//
报错
}
cn.Close();
break
;
}
}
}
//
Updated:更新出错,继续处理
static
void
Updated(
object
adapter, SqlRowUpdatedEventArgs e)
{
if
(e.StatementType
==
StatementType.Update)
{
if
(e.Status
==
UpdateStatus.ErrorsOccurred)
e.Status
=
UpdateStatus.SkipCurrentRow;
//
更新出错,继续处理
}
}
}
}
查看全文
相关阅读:
操作MS SQL Server 存储过程的类(外加ASP.NET MessageBox类)
利用DataGrid的超级联接传值
操作数据库系统信息
鼠标指向表格中的一行时,该行背景色改变;点击行时,突出显示标记颜色
asp.net下的UBB代码[C#]
java 为什么要序列化
oracle调用java方法的例子(下面所有代码都是在sql/plus
oracle存储过程
一个Java程序员应该掌握的10项技能
七款天气预报代码
原文地址:https://www.cnblogs.com/flaaash/p/1011129.html
最新文章
软件应用程序的打包和部署
如何用C#开发的计算器小软件
如何用C#进行Winform MP3播放器开发
DP最长公共子序列
错排
数塔
递推
分割平面问题
DP矩阵连乘
用递归的方法实现全排列
热门文章
hdu 3876 A pupil’s problem(简单数学题)
hdu 1789 Doing Homework again
DP动态规划
C#常用代码
JavaScript常用小技巧—各种屏蔽功能
实现你自己的分页管理器
初学ASP.Net时在论坛收藏收集的一些资料备忘
ASP.NET动态生成HTML页面
Visual Studio.Net 快捷键表
ASP.net 验证码(C#)
Copyright © 2011-2022 走看看