📄 setupselectguestsort.cs
字号:
using System;
using ConnectDBLibrary;
using System.Data;
namespace SetupOperDBLibrary
{
/// <summary>
/// SetupSelectGuestSort 的摘要说明。
/// </summary>
public class SetupSelectGuestSort
{
public void SelectGuestSort(DataTable table)
{
try
{
string cmtxt="select * from GuestSort";
ConnectAndAccessingDB db=new ConnectAndAccessingDB();
db.Select(cmtxt,table);
}
catch(Exception ex)
{
throw new ApplicationException("SetupSelectGuestSort==",ex);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -