📄 setupselectoperpopedom.cs
字号:
using System;
using System.Data;
using ConnectDBLibrary;
namespace SetupOperDBLibrary
{
/// <summary>
/// SetupSelectOperPopedom 的摘要说明。
/// </summary>
public class SetupSelectOperPopedom
{
public void SelectOperPopedom(DataTable table,string aid)
{
try
{
string cmtxt=string.Format("select oper1,oper2,oper3,oper4,oper5,oper6,oper7,oper8 from OperPopedom where aid={0}",aid);
ConnectAndAccessingDB db=new ConnectAndAccessingDB();
db.Select(cmtxt,table);
}
catch(Exception ex)
{
throw new ApplicationException("SetupSelectOperPopedom",ex);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -