Beispiel #1
0
        public Boolean insertSyatemParam(systemparam sp)
        {
            Boolean status   = true;
            string  utString = "";

            try
            {
                string updateSQL = "insert into SystemParameters " +
                                   "(ID,Value,Description)" +
                                   " values (" +
                                   "'" + sp.ID + "'," +
                                   "'" + sp.Value + "'," +
                                   "'" + sp.description + "')";
                utString = utString + updateSQL + Main.QueryDelimiter;
                utString = utString +
                           ActivityLogDB.PrepareActivityLogQquerString("insert", "SystemParameters", "", updateSQL) +
                           Main.QueryDelimiter;
                if (!UpdateTable.UT(utString))
                {
                    status = false;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(this.ToString() + "-" + System.Reflection.MethodBase.GetCurrentMethod().Name + "() : Error");
                status = false;
            }
            return(status);
        }
Beispiel #2
0
        public List <systemparam> getSystemparameters()
        {
            systemparam        br;
            List <systemparam> systemparam = new List <systemparam>();

            try
            {
                SqlConnection conn  = new SqlConnection(Login.connString);
                string        query = "select Rowid,ID,Value,description from SystemParameters ";
                SqlCommand    cmd   = new SqlCommand(query, conn);
                conn.Open();
                SqlDataReader reader = cmd.ExecuteReader();
                while (reader.Read())
                {
                    br             = new systemparam();
                    br.rowid       = reader.GetInt32(0);
                    br.ID          = reader.GetString(1);
                    br.Value       = reader.GetString(2);
                    br.description = reader.GetString(3);
                    systemparam.Add(br);
                }
                conn.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(this.ToString() + "-" + System.Reflection.MethodBase.GetCurrentMethod().Name + "() : Error");
            }
            return(systemparam);
        }
Beispiel #3
0
        public Boolean updateSystemParam(systemparam sp)
        {
            Boolean status   = true;
            string  utString = "";
            string  date     = "";

            try
            {
                string updateSQL = "update SystemParameters set Value='" + sp.Value + "', " +
                                   " Description ='" + sp.description + "' where " +
                                   " RowID='" + sp.rowid + "' and ID='" + sp.ID + "'";
                utString = utString + updateSQL + Main.QueryDelimiter;
                utString = utString +
                           ActivityLogDB.PrepareActivityLogQquerString("update", "SystemParameters", "", updateSQL) +
                           Main.QueryDelimiter;
                if (!UpdateTable.UT(utString))
                {
                    status = false;
                }
            }
            catch (Exception)
            {
                MessageBox.Show(this.ToString() + "-" + System.Reflection.MethodBase.GetCurrentMethod().Name + "() : Error");
                status = false;
            }
            return(status);
        }
Beispiel #4
0
        public Boolean validateSyetemParam(systemparam sp)
        {
            Boolean status = true;

            try
            {
                if (sp.ID.Trim().Length == 0 || sp.ID == null)
                {
                    return(false);
                }
                if (sp.Value.Trim().Length == 0 || sp.Value == null)
                {
                    return(false);
                }
                if (sp.description.Trim().Length == 0 || sp.description == null)
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(this.ToString() + "-" + System.Reflection.MethodBase.GetCurrentMethod().Name + "() : Error");
                return(false);
            }
            return(status);
        }