コード例 #1
0
        public int Update(Employeereg Employe)
        {
            int i;

            using (SqlConnection con = new SqlConnection(connection))
            {
                con.Open();
                SqlCommand com = new SqlCommand("SP_UpdateEmp", con);
                com.CommandType = CommandType.StoredProcedure;

                com.Parameters.AddWithValue("@Eno", Employe.Eno);
                com.Parameters.AddWithValue("@Ename", Employe.Ename);

                com.Parameters.AddWithValue("@Salary", Employe.Salary);
                com.Parameters.AddWithValue("@Gender", Employe.Gender);
                if (Employe.Hobbies == "True")
                {
                    var a = Convert.ToString(Employe.Hobbies);
                    a = "Cricket";
                    com.Parameters.AddWithValue("@Hobbies", Convert.ToString(a));
                }
                else
                {
                    com.Parameters.AddWithValue("@Hobbies", DBNull.Value);
                }
                if (Employe.Hobbies1 == "True")
                {
                    var a = Convert.ToString(Employe.Hobbies1);
                    a = "Songs";
                    com.Parameters.AddWithValue("@Hobbies1", Convert.ToString(a));
                }
                else
                {
                    com.Parameters.AddWithValue("@Hobbies1", DBNull.Value);
                }
                if (Employe.Hobbies2 == "True")
                {
                    var a = Convert.ToString(Employe.Hobbies1);
                    a = "Chess";


                    com.Parameters.AddWithValue("@Hobbies2", Convert.ToString(a));
                }
                else
                {
                    // var a = Convert.ToString(emp.Hobbies2);
                    //a = "Not selecteed";
                    com.Parameters.AddWithValue("@Hobbies2", DBNull.Value);
                }
                com.Parameters.AddWithValue("@City", Employe.City);
                i = com.ExecuteNonQuery();
            }
            return(i);
        }
コード例 #2
0
        public int DeleteEmployee(Employeereg Emp)
        {
            int i;

            using (SqlConnection con = new SqlConnection(connection))
            {
                con.Open();
                SqlCommand com = new SqlCommand("SP_DeleteEmployee", con);
                com.CommandType = CommandType.StoredProcedure;
                com.Parameters.AddWithValue("@Id", Emp.Eno);
                i = com.ExecuteNonQuery();
            }
            return(i);
        }
コード例 #3
0
        public int Add(Employeereg emp)
        {
            int i;

            using (SqlConnection con = new SqlConnection(connection))
            {
                con.Open();
                SqlCommand com = new SqlCommand("SP_InsertEmp", con);
                com.CommandType = CommandType.StoredProcedure;
                com.Parameters.AddWithValue("@Ename", emp.Ename);
                com.Parameters.AddWithValue("@Salary", emp.Salary);
                com.Parameters.AddWithValue("@Gender", emp.Gender);
                if (emp.Hobbies == "True")
                {
                    var a = Convert.ToString(emp.Hobbies);
                    a = "Cricket";
                    com.Parameters.AddWithValue("@Hobbies", Convert.ToString(a));
                }
                else
                {
                    com.Parameters.AddWithValue("@Hobbies", null);
                }
                if (emp.Hobbies1 == "True")
                {
                    var a = Convert.ToString(emp.Hobbies1);
                    a = "Songs";
                    com.Parameters.AddWithValue("@Hobbies1", Convert.ToString(a));
                }
                else
                {
                    com.Parameters.AddWithValue("@Hobbies1", null);
                }
                if (emp.Hobbies2 == "True")
                {
                    var a = Convert.ToString(emp.Hobbies1);
                    a = "Chess";
                    com.Parameters.AddWithValue("@Hobbies2", Convert.ToString(a));
                }
                else
                {
                    com.Parameters.AddWithValue("@Hobbies2", null);
                }
                com.Parameters.AddWithValue("@City", emp.City);
                i = com.ExecuteNonQuery();
            }
            return(i);
        }