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;
//
更新出错,继续处理
}
}
}
}
查看全文
相关阅读:
哥哥牟:诺拉的死亡是由于寻找食物的粪便!
Eclipse建筑物SSH(struts-2.2.3 + spring-2.5.6 + hibernate-3.6.8)相框-随着源代码
Centos6.5下一个Ceph存储集群结构
linux input如何固定设备event handler
sizeof运营商
【小言的设计模式】类之间的关系
2015第11周五
2015第11周四~代发公司招聘信息
2015第11周三
2015第11周二
原文地址:https://www.cnblogs.com/flaaash/p/1011129.html
最新文章
poj 1094 Sorting It All Out (拓扑排序)
DataTable添加列和行的三种方法
Oracle自定义数据类型 2 (调用对象方法)
Oracle自定义数据类型 1
C# 类的多态、结构、接口、抽象、虚函数总结
遥感数据下载
Struts2如何传值到jsp页面
Maven将jar包放入本地库
There is no Action mapped for namespace [/] and action name [TestAction] ass
路由器断网如何配置上网
热门文章
解决javax.servlet.jsp.JspException cannot be resolved to a type
FCKeditor用在JSP中的几点注意事项
FCKEditor报java.lang.NullPointerException
jsp页面转换时间戳
${pageContext.request.contextPath}的作用
mybatis报错(三)报错Result Maps collection does not contain value for java.lang.Integer解决方法
java实现线性链表结构
中国新首富:嘛
Windows 驱动发展基金会(九)内核函数
零基矩阵的特征值和特征向量
Copyright © 2011-2022 走看看