复制
收藏
提问
全网

protected override void LoadData() { try { string strCaller = "FrmRptQuotationListing.LoadData"; string strSQL = ""; string strFilter = ""; // Build SQL Filter strFilter = BuildSQLFilter(); strSQL = "SELECT * FROM tblQuotation"; System.Data.DataSet objDs = null; // 执行SQL语句,并且返回查询数据 objDs = Tecsys.TecE.DataProxy.DataUtility.DP_Tools.ExecuteScriptDataSet(this.DBHelper, strCaller, strSQL); if (!(objDs == null) && objDs.Tables.Count > 0) this.DataSource = objDs.Tables[0]; } catch (Exception objE) { Tecsys.Library.DebugLibrary.SysError.Add(this.DBHelper, objE); } } protected override void DisplayGridData() { try { if ((this.DataSource == null) || (this.DrawGrid == null)) return; if ((this.DataSource.DefaultView == null) || this.DataSource.DefaultView.Count <= 0) return; // Init Report Parameter this.Grid_Base.BeginUpdate(); this.Grid_Base.IgnoreReadOnly = true; this.DrawGrid.GridReportInit(); // 修改报表显示数据的代码 - Start int intCount = 0; int intRowTotal = 0; System.Data.DataRowView objRowView = null; System.Data.DataView objDataView = null; string strQuatNo = ""; string strSalesman = ""; string strCurrency = ""; decimal decAmount = 0; objDataView = this.DataSource.DefaultView; // 定义一个 Hashtable 用于存储每个营业员的货币信息 Hashtable objSalesmanCurrency = new Hashtable(); // 循环 Dataview 中所有的记录 for (intCount = 0; intCount <= objDataView.Count - 1; intCount++) { // 得到当前行记录 objRowView = objDataView[intCount]; // 取当前行的值到对应的变量中 strQuatNo = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_QuatNo]); strSalesman = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Salesman]); strCurrency = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Currency]); decAmount = System.Convert.ToDecimal(objRowView[DBC_Company_tblQuotation.Field_TotalAmount]); // 如果该营业员还没有出现在 Hashtable 中,则添加新的记录 if (!objSalesmanCurrency.ContainsKey(strSalesman)) { objSalesmanCurrency.Add(strSalesman, new Hashtable()); } // 获取该营业员的 Hashtable Hashtable objCurrencyTotal = (Hashtable)objSalesmanCurrency[strSalesman]; // 如果该货币还没有出现在 Hashtable 中,则添加新的记录 if (!objCurrencyTotal.ContainsKey(strCurrency)) { objCurrencyTotal.Add(strCurrency, 0m); } // 更新该货币的总金额 objCurrencyTotal[strCurrency] = System.Convert.ToDecimal(objCurrencyTotal[strCurrency]) + decAmount; // 设置报表当前要画的是第几行 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; // 显示当前行所有列的信息到报表的 Grid 上 this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_QuatNo).CellValue = strQuatNo; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesman; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = strCurrency; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_TotalAmount).CellValue = decAmount; } // 遍历 Hashtable,在报表中显示每个营业员的货币信息 foreach (DictionaryEntry objSalesman in objSalesmanCurrency) { string strSalesmanName = System.Convert.ToString(objSalesman.Key); Hashtable objCurrencyTotal = (Hashtable)objSalesman.Value; // 在报表中新增一行,显示该营业员的标题 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesmanName; // 遍历该营业员的货币信息,在报表中显示 foreach (DictionaryEntry objCurrency in objCurrencyTotal) { intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = System.Convert.ToString(objCurrency.Key); this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotat

8482a8f82
刚刚
全网
文档
学术
百科
知识库
时间不限
自动

理解问题 protected override void LoadData() { try { string strCaller = "FrmRptQuotationListing.LoadData"; string strSQL = ""; string strFilter = ""; // Build SQL Filter strFilter = BuildSQLFilter(); strSQL = "SELECT * FROM tblQuotation"; System.Data.DataSet objDs = null; // 执行SQL语句,并且返回查询数据 objDs = Tecsys.TecE.DataProxy.DataUtility.DP_Tools.ExecuteScriptDataSet(this.DBHelper, strCaller, strSQL); if (!(objDs == null) && objDs.Tables.Count > 0) this.DataSource = objDs.Tables[0]; } catch (Exception objE) { Tecsys.Library.DebugLibrary.SysError.Add(this.DBHelper, objE); } } protected override void DisplayGridData() { try { if ((this.DataSource == null) || (this.DrawGrid == null)) return; if ((this.DataSource.DefaultView == null) || this.DataSource.DefaultView.Count <= 0) return; // Init Report Parameter this.Grid_Base.BeginUpdate(); this.Grid_Base.IgnoreReadOnly = true; this.DrawGrid.GridReportInit(); // 修改报表显示数据的代码 - Start int intCount = 0; int intRowTotal = 0; System.Data.DataRowView objRowView = null; System.Data.DataView objDataView = null; string strQuatNo = ""; string strSalesman = ""; string strCurrency = ""; decimal decAmount = 0; objDataView = this.DataSource.DefaultView; // 定义一个 Hashtable 用于存储每个营业员的货币信息 Hashtable objSalesmanCurrency = new Hashtable(); // 循环 Dataview 中所有的记录 for (intCount = 0; intCount <= objDataView.Count - 1; intCount++) { // 得到当前行记录 objRowView = objDataView[intCount]; // 取当前行的值到对应的变量中 strQuatNo = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_QuatNo]); strSalesman = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Salesman]); strCurrency = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Currency]); decAmount = System.Convert.ToDecimal(objRowView[DBC_Company_tblQuotation.Field_TotalAmount]); // 如果该营业员还没有出现在 Hashtable 中,则添加新的记录 if (!objSalesmanCurrency.ContainsKey(strSalesman)) { objSalesmanCurrency.Add(strSalesman, new Hashtable()); } // 获取该营业员的 Hashtable Hashtable objCurrencyTotal = (Hashtable)objSalesmanCurrency[strSalesman]; // 如果该货币还没有出现在 Hashtable 中,则添加新的记录 if (!objCurrencyTotal.ContainsKey(strCurrency)) { objCurrencyTotal.Add(strCurrency, 0m); } // 更新该货币的总金额 objCurrencyTotal[strCurrency] = System.Convert.ToDecimal(objCurrencyTotal[strCurrency]) + decAmount; // 设置报表当前要画的是第几行 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; // 显示当前行所有列的信息到报表的 Grid 上 this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_QuatNo).CellValue = strQuatNo; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesman; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = strCurrency; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_TotalAmount).CellValue = decAmount; } // 遍历 Hashtable,在报表中显示每个营业员的货币信息 foreach (DictionaryEntry objSalesman in objSalesmanCurrency) { string strSalesmanName = System.Convert.ToString(objSalesman.Key); Hashtable objCurrencyTotal = (Hashtable)objSalesman.Value; // 在报表中新增一行,显示该营业员的标题 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesmanName; // 遍历该营业员的货币信息,在报表中显示 foreach (DictionaryEntry objCurrency in objCurrencyTotal) { intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = System.Convert.ToString(objCurrency.Key); this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotat

已完成理解 protected override void LoadData() { try { string strCaller = "FrmRptQuotationListing.LoadData"; string strSQL = ""; string strFilter = ""; // Build SQL Filter strFilter = BuildSQLFilter(); strSQL = "SELECT * FROM tblQuotation"; System.Data.DataSet objDs = null; // 执行SQL语句,并且返回查询数据 objDs = Tecsys.TecE.DataProxy.DataUtility.DP_Tools.ExecuteScriptDataSet(this.DBHelper, strCaller, strSQL); if (!(objDs == null) && objDs.Tables.Count > 0) this.DataSource = objDs.Tables[0]; } catch (Exception objE) { Tecsys.Library.DebugLibrary.SysError.Add(this.DBHelper, objE); } } protected override void DisplayGridData() { try { if ((this.DataSource == null) || (this.DrawGrid == null)) return; if ((this.DataSource.DefaultView == null) || this.DataSource.DefaultView.Count <= 0) return; // Init Report Parameter this.Grid_Base.BeginUpdate(); this.Grid_Base.IgnoreReadOnly = true; this.DrawGrid.GridReportInit(); // 修改报表显示数据的代码 - Start int intCount = 0; int intRowTotal = 0; System.Data.DataRowView objRowView = null; System.Data.DataView objDataView = null; string strQuatNo = ""; string strSalesman = ""; string strCurrency = ""; decimal decAmount = 0; objDataView = this.DataSource.DefaultView; // 定义一个 Hashtable 用于存储每个营业员的货币信息 Hashtable objSalesmanCurrency = new Hashtable(); // 循环 Dataview 中所有的记录 for (intCount = 0; intCount <= objDataView.Count - 1; intCount++) { // 得到当前行记录 objRowView = objDataView[intCount]; // 取当前行的值到对应的变量中 strQuatNo = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_QuatNo]); strSalesman = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Salesman]); strCurrency = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Currency]); decAmount = System.Convert.ToDecimal(objRowView[DBC_Company_tblQuotation.Field_TotalAmount]); // 如果该营业员还没有出现在 Hashtable 中,则添加新的记录 if (!objSalesmanCurrency.ContainsKey(strSalesman)) { objSalesmanCurrency.Add(strSalesman, new Hashtable()); } // 获取该营业员的 Hashtable Hashtable objCurrencyTotal = (Hashtable)objSalesmanCurrency[strSalesman]; // 如果该货币还没有出现在 Hashtable 中,则添加新的记录 if (!objCurrencyTotal.ContainsKey(strCurrency)) { objCurrencyTotal.Add(strCurrency, 0m); } // 更新该货币的总金额 objCurrencyTotal[strCurrency] = System.Convert.ToDecimal(objCurrencyTotal[strCurrency]) + decAmount; // 设置报表当前要画的是第几行 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; // 显示当前行所有列的信息到报表的 Grid 上 this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_QuatNo).CellValue = strQuatNo; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesman; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = strCurrency; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_TotalAmount).CellValue = decAmount; } // 遍历 Hashtable,在报表中显示每个营业员的货币信息 foreach (DictionaryEntry objSalesman in objSalesmanCurrency) { string strSalesmanName = System.Convert.ToString(objSalesman.Key); Hashtable objCurrencyTotal = (Hashtable)objSalesman.Value; // 在报表中新增一行,显示该营业员的标题 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesmanName; // 遍历该营业员的货币信息,在报表中显示 foreach (DictionaryEntry objCurrency in objCurrencyTotal) { intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = System.Convert.ToString(objCurrency.Key); this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotat

展开阅读网页

您提供的代码是一个C#方法,用于加载和显示报价表(tblQuotation)的数据。这个方法主要分为两个部分:LoadDataDisplayGridData。下面是对这两个方法的详细解释:

LoadData 方法

这个方法的目的是加载报价表的数据,并将其设置为数据源(DataSource)。以下是该方法的主要步骤:

  1. 构建SQL查询语句,选择tblQuotation表中的所有数据:strSQL = "SELECT * FROM tblQuotation";
  2. 使用Tecsys.TecE.DataProxy.DataUtility.DP_Tools.ExecuteScriptDataSet方法执行SQL语句,并获取返回的数据集(DataSet)。
  3. 如果数据集不为空,并且包含至少一个表,则将数据集的第一个表设置为数据源:this.DataSource = objDs.Tables[0];
  4. 如果执行过程中发生异常,使用Tecsys.Library.DebugLibrary.SysError.Add方法记录错误信息。

DisplayGridData 方法

这个方法的目的是将加载的数据以表格形式显示出来。以下是该方法的主要步骤:

  1. 检查数据源和报表控件是否为空,如果为空则直接返回。
  2. 检查数据源的默认视图是否包含数据,如果数据量为0则直接返回。
  3. 初始化报表控件,并设置报表控件的只读属性为true
  4. 遍历数据源中的所有记录,对于每条记录:
    • 提取记录中的报价编号(QuatNo)、销售人员(Salesman)、货币类型(Currency)和总金额(TotalAmount)。
    • 使用Hashtable存储每个销售人员的货币信息,如果该销售人员或货币类型尚未在Hashtable中,则添加新记录。
    • 更新该货币类型的总金额。
  5. 设置报表控件的行数,并为每条记录显示所有列的信息。
  6. 遍历Hashtable,为每个销售人员在报表中添加一行,显示其货币信息。

这段代码展示了如何从数据库加载数据,并通过报表控件以表格形式显示出来。同时,它还展示了如何使用Hashtable来组织和显示汇总数据。123456789

数据泵技术在大数据量导出时的性能改进主要体现在哪些方面?

数据泵技术在大数据量导出时的性能改进主要体现在以下几个方面:

  1. 高速性能:数据泵利用直接路径读写机制,减少了I/O瓶颈,极大地提高了数据的导出和导入速度。10
  2. 并行处理:支持多线程并行操作,能同时处理多个表或分区,从而加快大数据量的迁移速度。10
  3. 重新启动作业的能力:在数据泵技术中,如果导出或导入作业由于某些原因中断,可以重新启动作业,而不是从头开始。1
  4. 估算空间需求的能力:数据泵技术提供了估算所需空间的功能,这有助于在执行导出操作前规划存储资源。1
  5. 细粒度的控制:数据泵技术允许用户精细控制导出和导入的内容、方式和目标,包括选择特定的表、索引、存储过程等数据库对象,以及过滤条件、压缩选项等。10

sqluldr2工具在导出数据时生成的控制文件格式是什么?

sqluldr2工具在导出数据时可以生成sqlldr的控制文件。这种控制文件是用于指导sqlldr工具如何加载数据的配置文件,通常包含了字段分隔符、记录分隔符、数据源等信息。3

在使用数据泵技术进行数据库备份时,如何估算所需的空间需求?

在使用数据泵技术进行数据库备份时,可以通过数据泵技术提供的估算空间需求的能力来估算所需的空间。数据泵技术允许用户在执行导出操作前,通过特定的参数或命令来估算所需的存储空间,以确保有足够的资源来完成备份操作。1

数据泵技术中的DBMS_DATAPUMP程序包主要负责哪些功能?

DBMS_DATAPUMP程序包是数据泵技术的核心引擎,主要负责以下功能:

  1. 驱动数据字段元数据的装载和卸载。
  2. 包括数据泵技术的核心部分,此核心部分以高效的方式移动数据和元数据。
  3. 提供了一系列过程和函数,如ADD_FILE用于添加转储文件,SET_PARALLEL用于设置并行度等,以支持数据泵作业的各种操作和管理。123

sqluldr2工具支持哪些操作系统平台,并且如何根据平台选择相应的程序版本?

sqluldr2工具支持多种操作系统平台,具体包括:

  1. 32位Windows平台,使用sqluldr2.exe
  2. 64位Windows平台,使用sqluldr264.exe
  3. Linux 32位操作系统,使用sqluldr2_linux32_10204.bin
  4. Linux 64位操作系统,使用sqluldr2_linux64_10204.bin

用户应根据自己使用的操作系统平台选择相应的程序版本进行数据导出操作。3

更简洁一些
转笔记
简洁
protected override void LoadData() { try { string strCaller = "FrmRptQuotationListing.LoadData"; string strSQL = ""; string strFilter = ""; // Build SQL Filter strFilter = BuildSQLFilter(); strSQL = "SELECT * FROM tblQuotation"; System.Data.DataSet objDs = null; // 执行SQL语句,并且返回查询数据 objDs = Tecsys.TecE.DataProxy.DataUtility.DP_Tools.ExecuteScriptDataSet(this.DBHelper, strCaller, strSQL); if (!(objDs == null) && objDs.Tables.Count > 0) this.DataSource = objDs.Tables[0]; } catch (Exception objE) { Tecsys.Library.DebugLibrary.SysError.Add(this.DBHelper, objE); } } protected override void DisplayGridData() { try { if ((this.DataSource == null) || (this.DrawGrid == null)) return; if ((this.DataSource.DefaultView == null) || this.DataSource.DefaultView.Count <= 0) return; // Init Report Parameter this.Grid_Base.BeginUpdate(); this.Grid_Base.IgnoreReadOnly = true; this.DrawGrid.GridReportInit(); // 修改报表显示数据的代码 - Start int intCount = 0; int intRowTotal = 0; System.Data.DataRowView objRowView = null; System.Data.DataView objDataView = null; string strQuatNo = ""; string strSalesman = ""; string strCurrency = ""; decimal decAmount = 0; objDataView = this.DataSource.DefaultView; // 定义一个 Hashtable 用于存储每个营业员的货币信息 Hashtable objSalesmanCurrency = new Hashtable(); // 循环 Dataview 中所有的记录 for (intCount = 0; intCount <= objDataView.Count - 1; intCount++) { // 得到当前行记录 objRowView = objDataView[intCount]; // 取当前行的值到对应的变量中 strQuatNo = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_QuatNo]); strSalesman = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Salesman]); strCurrency = System.Convert.ToString(objRowView[DBC_Company_tblQuotation.Field_Currency]); decAmount = System.Convert.ToDecimal(objRowView[DBC_Company_tblQuotation.Field_TotalAmount]); // 如果该营业员还没有出现在 Hashtable 中,则添加新的记录 if (!objSalesmanCurrency.ContainsKey(strSalesman)) { objSalesmanCurrency.Add(strSalesman, new Hashtable()); } // 获取该营业员的 Hashtable Hashtable objCurrencyTotal = (Hashtable)objSalesmanCurrency[strSalesman]; // 如果该货币还没有出现在 Hashtable 中,则添加新的记录 if (!objCurrencyTotal.ContainsKey(strCurrency)) { objCurrencyTotal.Add(strCurrency, 0m); } // 更新该货币的总金额 objCurrencyTotal[strCurrency] = System.Convert.ToDecimal(objCurrencyTotal[strCurrency]) + decAmount; // 设置报表当前要画的是第几行 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; // 显示当前行所有列的信息到报表的 Grid 上 this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_QuatNo).CellValue = strQuatNo; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesman; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = strCurrency; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_TotalAmount).CellValue = decAmount; } // 遍历 Hashtable,在报表中显示每个营业员的货币信息 foreach (DictionaryEntry objSalesman in objSalesmanCurrency) { string strSalesmanName = System.Convert.ToString(objSalesman.Key); Hashtable objCurrencyTotal = (Hashtable)objSalesman.Value; // 在报表中新增一行,显示该营业员的标题 intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Salesman).CellValue = strSalesmanName; // 遍历该营业员的货币信息,在报表中显示 foreach (DictionaryEntry objCurrency in objCurrencyTotal) { intRowTotal += 1; this.Grid_Base.RowCount = intRowTotal; this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotation.Field_Currency).CellValue = System.Convert.ToString(objCurrency.Key); this.DrawGrid.ItemID(intRowTotal, DBC_Company_tblQuotat
如何构建SQL查询过滤条件?
在C#中如何使用DataSet?
如何使用Hashtable存储数据?
相关内容6

数据泵文件类型1

数据泵文件分类 数据泵操作涉及转储文件、日志文件和SQL文件。

数据泵导出和导入用途1

数据泵应用场景 包括环境迁移、跨平台数据传递、备份等。

数据泵导出方法1

数据泵导出方式 通过命令行或参数文件执行,支持全导出等模式。

数据泵技术优点1

数据泵性能优势 基于服务器,具备性能改进和多任务执行能力。

sqluldr2工具介绍3

sqluldr2功能特点 Oracle数据导出工具,支持大数据量快速导出和导入。

sqluldr2安装使用3

sqluldr2安装指南 提供32位和64位版本,适用于不同操作系统。

在线客服