博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DataRowState & DataViewRowState
阅读量:5043 次
发布时间:2019-06-12

本文共 2139 字,大约阅读时间需要 7 分钟。

 

using
 System;
using
 System.ComponentModel;
namespace
 System.Data
{
    
//
 Summary:
    
//
     Describes the version of data in a System.Data.DataRow.
    [Flags]
    [Editor(
"
Microsoft.VSDesigner.Data.Design.DataViewRowStateEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
"
"
System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
"
)]
    
public
 
enum
 DataViewRowState
    {
        
//
 Summary:
        
//
     None.
        None 
=
 
0
,
        
//
        
//
 Summary:
        
//
     An unchanged row.
        Unchanged 
=
 
2
,
        
//
        
//
 Summary:
        
//
     A new row.
        Added 
=
 
4
,
        
//
        
//
 Summary:
        
//
     A deleted row.
        Deleted 
=
 
8
,
        
//
        
//
 Summary:
        
//
     A current version of original data that has been modified (see ModifiedOriginal).
        ModifiedCurrent 
=
 
16
,
        
//
        
//
 Summary:
        
//
     Current rows including unchanged, new, and modified rows.
        CurrentRows 
=
 
22
,
        
//
        
//
 Summary:
        
//
     The original version of the data that was modified. (Although the data has
        
//
     since been modified, it is available as ModifiedCurrent).
        ModifiedOriginal 
=
 
32
,
        
//
        
//
 Summary:
        
//
     Original rows including unchanged and deleted rows.
        OriginalRows 
=
 
42
,
    }
}

 

 

using
 System;
namespace
 System.Data
{
    
//
 Summary:
    
//
     Gets the state of a System.Data.DataRow object.
    [Flags]
    
public
 
enum
 DataRowState
    {
        
//
 Summary:
        
//
     The row has been created but is not part of any System.Data.DataRowCollection.
        
//
     A System.Data.DataRow is in this state immediately after it has been created
        
//
     and before it is added to a collection, or if it has been removed from a
        
//
     collection.
        Detached 
=
 
1
,
        
//
        
//
 Summary:
        
//
     The row has not changed since System.Data.DataRow.AcceptChanges() was last
        
//
     called.
        Unchanged 
=
 
2
,
        
//
        
//
 Summary:
        
//
     The row has been added to a System.Data.DataRowCollection, and System.Data.DataRow.AcceptChanges()
        
//
     has not been called.
        Added 
=
 
4
,
        
//
        
//
 Summary:
        
//
     The row was deleted using the System.Data.DataRow.Delete() method of the
        
//
     System.Data.DataRow.
        Deleted 
=
 
8
,
        
//
        
//
 Summary:
        
//
     The row has been modified and System.Data.DataRow.AcceptChanges() has not
        
//
     been called.
        Modified 
=
 
16
,
    }
}

 

 

 

转载于:https://www.cnblogs.com/RobotTech/archive/2010/12/26/1917102.html

你可能感兴趣的文章
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
Extjs String转Json
查看>>
二叉树的遍历问题总结
查看>>
一位数据挖掘成功人士 给 数据挖掘在读研究生 的建议
查看>>
Python3.6.0安装
查看>>
hdu1049
查看>>
H5项目常见问题及注意事项
查看>>
索尼(SONY) SVE1512S7C 把WIN8降成WIN7图文教程
查看>>