datadeleteoperation.cs
来自「一个通用的数据库访问层」· CS 代码 · 共 37 行
CS
37 行
using System;
using System.Data;
using System.Data.OleDb;
using System.Collections;
using System.Windows.Forms;
namespace YariSoft.DBUtil
{
public class DataDeleteOperation : DBBaseOperation
{
#region Constructor/Destructor
public DataDeleteOperation( OleDbConnection Connection, DataView Source, ArrayList SelectedRows )
:base ( Connection, Source, SelectedRows )
{
this.increaseProgress = false;
}
#endregion
#region Protected functions
protected override string GetProgressCaption()
{
return "Delete rows";
}
protected override string GetProgressMessage()
{
return "Delete rows from table '" + this.source.Table.TableName + "'";
}
protected override bool ExecOperation( int Position )
{
this.source.Delete((( int )this.selectedRows[Position]));
return true;
}
#endregion
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?