dbcommandstore.cs

来自「酒店在线订餐管理系统」· CS 代码 · 共 18 行

CS
18
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace ImpDDal
{
    public class DbCommandStore
    {
        public static DbCommandStore TheInstance = new DbCommandStore();

        public static System.Data.Common.DbCommand GetCommand()
        {
            System.Data.Common.DbCommand cmd = DbConnectionStore.TheInstance.GetConnection().CreateCommand();
            return cmd;
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?