Esempio n. 1
0
        //Inserting Data

        public bool Insert(orderClass c)
        {
            bool isSuccess = false;

            SqlConnection conn = new SqlConnection(myconnstring);

            try
            {
                //Sql query to insert data

                string sql = "INSERT INTO  orderDetails(supplierName, orderDate, inventoryType, amount) VALUES(@supplierName, @orderDate, @inventoryType, @amount)";

                SqlCommand cmd = new SqlCommand(sql, conn);

                //parameters to add data

                cmd.Parameters.AddWithValue("@supplierName", c.supplierName);
                cmd.Parameters.AddWithValue("@orderDate", c.orderDate);
                cmd.Parameters.AddWithValue("@inventoryType", c.inventoryType);
                cmd.Parameters.AddWithValue("@amount", c.amount);

                //open dataBase connection
                conn.Open();

                //check rows greater than zero else will be 0
                int rows = cmd.ExecuteNonQuery();

                if (rows > 0)
                {
                    isSuccess = true;
                }

                else
                {
                    isSuccess = false;
                }
            }

            catch (Exception ex)
            {
            }

            finally
            {
                conn.Close();
            }

            return(isSuccess);
        }
Esempio n. 2
0
        //Update data

        public bool Update(orderClass c)
        {
            bool isSuccess = false;

            SqlConnection conn = new SqlConnection(myconnstring);

            try
            {
                string sql = "UPDATE orderDetails SET supplierName = '" + c.supplierName + "', orderDate = '" + c.orderDate + "', inventoryType = '" + c.inventoryType + "', amount = '" + c.amount + "' WHERE orderID = '" + c.orderID + "'";

                SqlCommand cmd = new SqlCommand(sql, conn);

                //cmd.Parameters.AddWithValue("@supplierName", c.supplierName);
                //cmd.Parameters.AddWithValue("@orderDate", c.orderDate);
                //cmd.Parameters.AddWithValue("@inventoryType", c.inventoryType);
                //cmd.Parameters.AddWithValue("@amount", c.amount);
                //cmd.Parameters.AddWithValue("@orderID", c.orderID);

                //open dataBase connection
                conn.Open();

                //check rows greater than zero else will be 0
                int rows = cmd.ExecuteNonQuery();

                if (rows > 0)
                {
                    isSuccess = true;
                }

                else
                {
                    isSuccess = false;
                }
            }

            catch (Exception ex)
            {
            }

            finally
            {
                conn.Close();
            }

            return(isSuccess);
        }
Esempio n. 3
0
        //Delete data

        public bool Delete(orderClass c)
        {
            bool isSuccess = false;

            SqlConnection conn = new SqlConnection(myconnstring);

            try
            {
                //Delete data

                string sql = "DELETE FROM orderDetails WHERE orderID = @orderID";


                SqlCommand cmd = new SqlCommand(sql, conn);
                cmd.Parameters.AddWithValue("@orderID", c.orderID);

                //open dataBase connection

                conn.Open();


                //check rows greater than zero else will be 0
                int rows = cmd.ExecuteNonQuery();

                if (rows > 0)
                {
                    isSuccess = true;
                }

                else
                {
                    isSuccess = false;
                }
            }

            catch (Exception ex)
            {
            }
            finally
            {
                conn.Close();
            }

            return(isSuccess);
        }