Пример #1
0
        public String update(AddressType1 p)
        {
            String re  = "";
            String sql = "";
            int    chk = 0;

            chkNull(p);
            sql = "Update " + addrT.table + " Set " +
                  " " + addrT.address_name_t + " = '" + p.address_name_t.Replace("'", "''") + "'" +
                  "," + addrT.address_name_e + " = '" + p.address_name_e.Replace("'", "''") + "'" +
                  "," + addrT.remark + " = '" + p.remark.Replace("'", "''") + "'" +
                  "," + addrT.date_modi + " = now()" +

                  "Where " + addrT.pkField + "='" + p.address_type_id + "'"
            ;

            try
            {
                re = conn.ExecuteNonQuery(conn.conn, sql);
            }
            catch (Exception ex)
            {
                sql = ex.Message + " " + ex.InnerException;
            }

            return(re);
        }
Пример #2
0
        public String insert(AddressType1 p)
        {
            String re  = "";
            String sql = "";

            p.active = "1";
            //p.ssdata_id = "";
            int chk = 0;

            chkNull(p);
            sql = "Insert Into " + addrT.table + "(" + addrT.address_name_t + "," + addrT.address_name_e + "," + addrT.remark + "," +
                  addrT.date_create + "," + addrT.date_modi + ", " + addrT.date_cancel + ", " +
                  addrT.user_create + "," + addrT.user_modi + ", " + addrT.user_cancel + ", " +
                  addrT.active + " " +
                  ") " +
                  "Values ('" + p.address_name_t.Replace("'", "''") + "','" + p.address_name_e.Replace("'", "''") + "','" + p.remark.Replace("'", "''") + "','" +
                  "'" + p.date_create + "','" + p.date_modi + "','" + p.date_cancel + "', " +
                  "'" + p.user_create + "','" + p.user_modi + "','" + p.user_cancel + "', " +
                  "'" + p.active + "' " +
                  ")";
            try
            {
                re = conn.ExecuteNonQuery(conn.conn, sql);
            }
            catch (Exception ex)
            {
                sql = ex.Message + " " + ex.InnerException;
            }

            return(re);
        }
Пример #3
0
        public String insertAddressType(AddressType1 p)
        {
            String re = "";

            if (p.address_type_id.Equals(""))
            {
                re = insert(p);
            }
            else
            {
                re = update(p);
            }

            return(re);
        }
Пример #4
0
        private void chkNull(AddressType1 p)
        {
            int     chk  = 0;
            Decimal chk1 = 0;

            p.date_modi   = p.date_modi == null ? "" : p.date_modi;
            p.date_cancel = p.date_cancel == null ? "" : p.date_cancel;
            p.user_create = p.user_create == null ? "" : p.user_create;
            p.user_modi   = p.user_modi == null ? "" : p.user_modi;
            p.user_cancel = p.user_cancel == null ? "" : p.user_cancel;

            p.address_type_id = p.address_type_id == null ? "" : p.address_type_id;

            p.address_name_t = p.address_name_t == null ? "" : p.address_name_t;
            p.address_name_e = p.address_name_e == null ? "" : p.address_name_e;
            p.active         = p.active == null ? "" : p.active;
            p.remark         = p.remark == null ? "" : p.remark;
        }
Пример #5
0
        private void initConfig()
        {
            addrT = new AddressType1();
            addrT.address_type_id = "address_type_id";
            addrT.address_name_t  = "address_name_t";
            addrT.address_name_e  = "address_name_e";
            addrT.date_create     = "date_create";
            addrT.date_modi       = "date_modi";
            addrT.date_cancel     = "date_cancel";
            addrT.user_create     = "user_create";
            addrT.user_modi       = "user_modi";
            addrT.user_cancel     = "user_cancel";
            addrT.active          = "active";
            addrT.remark          = "remark";

            addrT.table   = "b_address_type";
            addrT.pkField = "address_type_id";
        }
Пример #6
0
        public void getlAddr()
        {
            //lDept = new List<Department>();

            lAddrT.Clear();
            DataTable dt = new DataTable();

            dt      = selectAll();
            dtAddrT = dt;
            foreach (DataRow row in dt.Rows)
            {
                AddressType1 addrT1 = new AddressType1();
                addrT1.address_type_id = row[addrT.address_type_id].ToString();
                addrT1.address_name_e  = row[addrT.address_name_e].ToString();
                addrT1.address_name_t  = row[addrT1.address_name_t].ToString();
                //addrT1.line_e1 = row[addrT1.line_e1].ToString();

                lAddrT.Add(addrT1);
            }
        }
Пример #7
0
        private AddressType1 setAddress(DataTable dt)
        {
            AddressType1 addrT1 = new AddressType1();

            if (dt.Rows.Count > 0)
            {
                addrT1.address_type_id = dt.Rows[0][addrT.address_type_id].ToString();
                addrT1.address_name_e  = dt.Rows[0][addrT.address_name_e].ToString();
                addrT1.date_create     = dt.Rows[0][addrT.date_create].ToString();
                addrT1.date_modi       = dt.Rows[0][addrT.date_modi].ToString();
                addrT1.date_cancel     = dt.Rows[0][addrT.date_cancel].ToString();
                addrT1.user_create     = dt.Rows[0][addrT.user_create].ToString();
                addrT1.user_modi       = dt.Rows[0][addrT.user_modi].ToString();
                addrT1.address_name_t  = dt.Rows[0][addrT.address_name_t].ToString();
                addrT1.user_cancel     = dt.Rows[0][addrT.user_cancel].ToString();

                addrT1.active = dt.Rows[0][addrT.active].ToString();

                addrT1.remark = dt.Rows[0][addrT.remark].ToString();
            }

            return(addrT1);
        }