private Common.GaokaoForecastModel.GaokaoForecastTBInfo GetGaokaoForecastTBInfoNow(DateTime dt)
        {
            try
            {
                Common.GaokaoForecastModel.GaokaoForecastTBInfo infoList = null;
                string       strSQL = "select * from SF_GAOKAOFORECAST_TB where  ddatetime = to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi') ";
                OracleHelper oh     = new OracleHelper("HAIKOUConnect");
                DataTable    dTable = oh.ExecuteDataTable(strSQL);

                if (dTable != null && dTable.Rows.Count > 0)
                {
                    infoList = new Common.GaokaoForecastModel.GaokaoForecastTBInfo();
                    string[] Forecasttime = new string[dTable.Rows.Count];
                    string[] Weatherpic   = new string[dTable.Rows.Count];
                    string[] Weatherdes   = new string[dTable.Rows.Count];
                    string[] Temperature  = new string[dTable.Rows.Count];
                    string[] Wind         = new string[dTable.Rows.Count];

                    for (int i = 0; i < dTable.Rows.Count; i++)
                    {
                        infoList.Ddatetime = dt.ToString("yyyy-MM-dd HH:mm");
                        Forecasttime[i]    = dTable.Rows[i]["FORECASTTIME"].ToString();
                        Weatherpic[i]      = dTable.Rows[i]["WEATHERPIC"].ToString();
                        Weatherdes[i]      = dTable.Rows[i]["WEATHER"].ToString();
                        Temperature[i]     = dTable.Rows[i]["TEMPERATURE"].ToString();
                        Wind[i]            = dTable.Rows[i]["WIND"].ToString();
                    }

                    infoList.Forecasttime = Forecasttime;
                    infoList.Weatherpic   = Weatherpic;
                    infoList.Weatherdes   = Weatherdes;
                    infoList.Temperature  = Temperature;
                    infoList.Wind         = Wind;
                }
                return(infoList);
            }
            catch (Exception ex)
            {
                OracleHelper.ErrWriter(ex);
            }
            return(null);
        }
        //高考专报
        public bool InsertGaokaoForecast(DateTime dt, Common.GaokaoForecastModel.GaokaoForecastInfo info, Common.GaokaoForecastModel.GaokaoForecastTBInfo TBinfo, string forecaster)
        {
            try
            {
                string strSQL   = "";
                string strSQLTB = "";
                string str      = "";
                string strID    = "";
                string strIDTB  = "";
                int    result1  = 0;
                int    result   = 0;
                strSQL   = "select recid from SF_GAOKAOFORECAST where ddatetime=to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi')";
                strSQLTB = "select recid from SF_GAOKAOFORECAST_TB where ddatetime=to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi')";
                OracleHelper oh = new OracleHelper("HAIKOUConnect");
                strID   = oh.db_GreateQuery(strSQL);
                strIDTB = oh.db_GreateQuery(strSQLTB);
                if (strID.Length > 0)
                {
                    strSQL = "update SF_GAOKAOFORECAST set DDATETIME =to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi') "
                             + ",FORECASTER='" + info.Forecaster + "'"
                             + ",WAETHERTREND='" + info.Weather_trend + "'"
                             + ",SUGGEST='" + info.Suggest + "'"
                             + ",SUBHEAD='" + info.Subhead + "'"
                             + ",FILEFLAG=0"
                             + " where RECID=" + strID;
                }
                else
                {
                    strSQL = "insert into SF_GAOKAOFORECAST(DDATETIME,FORECASTER,WAETHERTREND,SUGGEST,SUBHEAD,recid) values("
                             + " to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi') "
                             + ",'" + info.Forecaster + "'"
                             + ",'" + info.Weather_trend + "'"
                             + ",'" + info.Suggest + "'"
                             + ",'" + info.Subhead + "',seq_SF_GAOKAOFORECAST.Nextval)";
                }
                result1 = oh.db_ExecuteNonQuery(strSQL);

                //表格数据
                strSQLTB = "insert all into SF_GAOKAOFORECAST_TB(DDATETIME,FORECASTTIME,WEATHERPIC,WEATHER,TEMPERATURE,WIND,recid) ";
                for (int i = 0; i < TBinfo.Forecasttime.Length; i++)
                {
                    if (i == TBinfo.Forecasttime.Length - 1)
                    {
                        str += "values (to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi') "
                               + ",'" + TBinfo.Forecasttime[i] + "'"
                               + ",'" + TBinfo.Weatherpic[i] + "'"
                               + ",'" + TBinfo.Weatherdes[i] + "'"
                               + ",'" + TBinfo.Temperature[i] + "'"
                               + ",'" + TBinfo.Wind[i] + "',seq_SF_GAOKAOFORECAST_TB.Nextval) SELECT * FROM dual";
                    }
                    else
                    {
                        str += "values (to_date('" + dt.ToString("yyyy-MM-dd HH:mm") + "','yyyy-mm-dd hh24:mi') "
                               + ",'" + TBinfo.Forecasttime[i] + "'"
                               + ",'" + TBinfo.Weatherpic[i] + "'"
                               + ",'" + TBinfo.Weatherdes[i] + "'"
                               + ",'" + TBinfo.Temperature[i] + "'"
                               + ",'" + TBinfo.Wind[i] + "',seq_SF_GAOKAOFORECAST_TB.Nextval) into SF_GAOKAOFORECAST_TB(DDATETIME,FORECASTTIME,WEATHERPIC,WEATHER,TEMPERATURE,WIND,recid) ";
                    }
                }
                strSQLTB += str;
                result    = oh.db_ExecuteNonQuery(strSQLTB);

                if (result1 <= 0 || result <= 0)
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                return(false);
            }
            return(true);
        }
 public Common.GaokaoForecastModel.GaokaoForecastTBInfo GetGaokaoForecastTBInfo(DateTime dt)
 {
     Common.GaokaoForecastModel.GaokaoForecastTBInfo info = GetGaokaoForecastTBInfoNow(dt);
     return(info);
 }
示例#4
0
 //高考专报
 public bool InsertGaokaoForcast(DateTime dt, Common.GaokaoForecastModel.GaokaoForecastInfo info, Common.GaokaoForecastModel.GaokaoForecastTBInfo TBinfo, string forecaster)
 {
     return(hfDAL.InsertGaokaoForecast(dt, info, TBinfo, forecaster));
 }