Esempio n. 1
0
        /// <summary>
        ///查询正在运行的任务
        /// </summary>
        public DataTable SelectWorkingMission(string userid)
        {
            string    SelectStr = "select spidername from Mission where status='working' and userid='" + userid + "';";
            DataTable Content   = mshelper.SelectSQl_More(SelectStr);

            return(Content);
        }
Esempio n. 2
0
        public DataTable SelectMore()
        {
            string    SelectStr = "select * from exceptioninfo;";
            DataTable Content   = mshelper.SelectSQl_More(SelectStr);

            return(Content);
        }
Esempio n. 3
0
        public DataTable SelectAll()
        {
            string    SelectStr = "select * from missioninfo;";
            DataTable content   = mshelper.SelectSQl_More(SelectStr);

            return(content);
        }