当前位置: 首页>>代码示例>>C#>>正文


C# OleDbConnection.GetDataTable方法代码示例

本文整理汇总了C#中System.Data.OleDb.OleDbConnection.GetDataTable方法的典型用法代码示例。如果您正苦于以下问题:C# OleDbConnection.GetDataTable方法的具体用法?C# OleDbConnection.GetDataTable怎么用?C# OleDbConnection.GetDataTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Data.OleDb.OleDbConnection的用法示例。


在下文中一共展示了OleDbConnection.GetDataTable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: UpdateJobCostTaxStatus

        /// <summary>
        /// Update the job cost tax status based on the tax district of a job. 
        /// </summary>
        /// <param name="jobCode"></param>
        /// <param name="startDate"></param>
        /// <param name="endDate"></param>
        private void UpdateJobCostTaxStatus(long jobCode, DateTime startDate, DateTime endDate, OleDbConnection con)
        {
            //using (var con = SysconCommon.Common.Environment.Connections.GetOLEDBConnection())
            {
                // Check the tax status of all unbilled job cost records that are marked to be
                // manually overridden for the billing total

                //Get the appropriate tax district information
                string sql = string.Format("SELECT taxdst.* FROM taxdst JOIN actrec ON taxdst.recnum = actrec.slstax "
                                            + "WHERE actrec.recnum = {0}", jobCode);

                DataTable taxInfoDt = con.GetDataTable("TaxInfo", sql);
                if (taxInfoDt.Rows.Count != 1)
                {
                    //No matching tax district set up in job.
                    return;
                }

                int[] taxStatus = new int[9];
                DataRow dr = taxInfoDt.Rows[0];

                taxStatus[0] = (((string)dr["mattax"]) == "Y") ? 1 : 0;
                taxStatus[1] = (((string)dr["labtax"]) == "Y") ? 1 : 0;
                taxStatus[2] = (((string)dr["eqptax"]) == "Y") ? 1 : 0;
                taxStatus[3] = (((string)dr["subtax"]) == "Y") ? 1 : 0;
                taxStatus[4] = (((string)dr["othtax"]) == "Y") ? 1 : 0;
                taxStatus[5] = (((string)dr["usrcs6"]) == "Y") ? 1 : 0;
                taxStatus[6] = (((string)dr["usrcs7"]) == "Y") ? 1 : 0;
                taxStatus[7] = (((string)dr["usrcs8"]) == "Y") ? 1 : 0;
                taxStatus[8] = (((string)dr["usrcs9"]) == "Y") ? 1 : 0;

                //Update the taxable status of unbilled job cost records for this particular job
                string sql2 = string.Format("SELECT * from jobcst "
                                                + "WHERE jobcst.jobnum = {0} "
                                                + "AND jobcst.ovrrde = 1 "
                                                + "AND jobcst.bllsts = 1 "
                                                + "AND BETWEEN(jobcst.trndte, {1},{2})", jobCode,
                                                startDate.ToFoxproDate(), endDate.ToFoxproDate());

                DataTable dt = con.GetDataTable("Jobcst", sql2);
                foreach (DataRow row in dt.Rows)
                {
                    int cstTyp = (int)((decimal)row["csttyp"]);
                    decimal recNum = (decimal)row["recnum"];

                    string updateSql = string.Format("UPDATE jobcst SET taxabl = {0} "
                                                    + "WHERE jobcst.recnum = {1} ", taxStatus[cstTyp - 1], recNum);

                    con.ExecuteNonQuery(updateSql);
                }

            }
        }
开发者ID:vimalgupta1980,项目名称:JobCostManagementTool-src,代码行数:59,代码来源:JobCostDbHelper.cs

示例2: GetAllPaygroups

        internal static IEnumerable<long> GetAllPaygroups(OleDbConnection con)
        {
            var grpsdt = con.GetDataTable("paygroups", "select recnum from paygrp");

            return from r in grpsdt.Rows.ToIEnumerable()
                   select Convert.ToInt64(r["recnum"]);
        }
开发者ID:vimalgupta1980,项目名称:dotnetlibs,代码行数:7,代码来源:PaygroupAnalysis.cs


注:本文中的System.Data.OleDb.OleDbConnection.GetDataTable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。