コード例 #1
0
        public static DataTable ExecuteDataTable(string connectionString, string commandText)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();
            SqlCommandCustom command       = new SqlCommandCustom();

            command.CommandText = commandText;
            return(commandHelper.ExecuteDataTable(connectionString, command));
        }
コード例 #2
0
        public static DataTable ExecuteDataTable(ITransactionCustom Transaction, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteDataTable(Transaction, Command));
        }
コード例 #3
0
        public static DataTable ExecuteDataTable(string connectionString, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteDataTable(connectionString, Command));
        }