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;
//
更新出错,继续处理
}
}
}
}
查看全文
相关阅读:
[译]ABP vNext微服务演示,项目状态和路线图
[译]初试C# 8.0
[译]ABP vNext介绍
ViewModel从未如此清爽
python 函数基础及装饰器
python 基础一
scrapy基础二
scrapy 基础
python 基础技巧
pandas 基础
原文地址:https://www.cnblogs.com/flaaash/p/1011129.html
最新文章
陶瓷制作基本方法(拉柸成型、上釉)
微信公众号和小程序开发
Celery异步调度框架(一)基本使用
Python获取网络中的存活主机以及哪些主机是Linux
dmidecode的Python解析
Linux自定义分隔符IFS引发的文本处理问题
Python命令行参数解析模块argparse
Python的魔法函数系列 __getattrbute__和__getattr__
Python的线程池
Condition条件变量
热门文章
with open为什么会自动关闭文件流
Python捕捉系统信号
python使用魔法函数创建可切片类型
Python自省
LVS(五)LVS的持久连接
LVS(二)NAT模型配置
LVS (一) 原理
【awesome-dotnet-core-learning】(3)-Bogus-假数据生成器
【awesome-dotnet-core-learning】(2)-Sprache.Calc-表达式计算器
【awesome-dotnet-core-learning】(1)-Sprache-解析器构建库
Copyright © 2011-2022 走看看