Пример #1
0
 private void button3_Click(object sender, EventArgs e)
 {
     //Shows all the data for the Bus table when the 'View' button is clicked
     if (comboBox1.Text == "Show All")
     {
         BusDBAccess bdba = new BusDBAccess(db);
         createTableToShowBus(bdba.getAllBus());
     }
     //Shows all the data for the Bus table which matches the searched for Bus Driver name
     else if (comboBox1.Text == "Driver Name")
     {
         string      selectedName = textBox1.Text;
         BusDBAccess bdba         = new BusDBAccess(db);
         createTableToShowBus(bdba.getWhereDriverIs(selectedName));
     }
 }
Пример #2
0
        private void button4_Click(object sender, EventArgs e)
        {
            try
            {
                //If the user selects show all, display all the entries for the Bus Booking
                if (comboBox1.Text == "Show All")
                {
                    BusBookingDBAccess bdba = new BusBookingDBAccess(db);
                    createTableToShowAllBusBooking(bdba.getAllBusBooking());
                    SelectedTable = "";
                }

                //If the user searchs for a Booking ID, Show all the entries where their entered ID matches ones in the database
                else if (comboBox1.Text == "Booking ID")
                {
                    BusBookingDBAccess bdba = new BusBookingDBAccess(db);
                    createTableToShowAllBusBooking(bdba.SelectWhereBookingID(Convert.ToInt32(textBox1.Text)));
                    SelectedTable = "BusBooking";
                }
                //If the user searchs for a Driver Name, Show all the entries where their entered name matches the one stored in the database
                else if (comboBox1.Text == "Driver Name")
                {
                    BusDBAccess bdba       = new BusDBAccess(db);
                    string      driverName = textBox1.Text;
                    createTableToShowBus(bdba.getWhereDriverIs(driverName));
                    SelectedTable = "Bus";
                }
                //If the user searchs for a Staff Name, Show all the entries where their entered name matches the one stored in the database
                else if (comboBox1.Text == "Staff Name")
                {
                    StaffDBAccess sdba      = new StaffDBAccess(db);
                    string        staffName = textBox1.Text;
                    createTableToShowStaff(sdba.GetStaffByName(staffName));
                    SelectedTable = "Staff";
                }
            }

            catch { }
        }
Пример #3
0
        //When the 'Search' button is clicked
        private void button1_Click(object sender, EventArgs e)
        {
            //The searched for name goes into the searcher variable
            string searcher = textBox1.Text;

            //If the user is searching for a child name in the Parent & Child table
            if (comboBox2.Text == "Child Name" && comboBox1.Text == "Parent & Child")
            {
                //display the data which matches the searched for childs name
                InnerJoinDBAccess injdba = new InnerJoinDBAccess(db);
                CreateTableToShowChildAndParent(injdba.GetChildrenAndParentWhereChildName(searcher));
            }
            //If the user is searching for the Parents name in the parent & child table
            if (comboBox2.Text == "Parent Name" && comboBox1.Text == "Parent & Child")
            {
                //diaplay the data which matches the searched for parents name
                InnerJoinDBAccess injdba = new InnerJoinDBAccess(db);
                CreateTableToShowChildAndParent(injdba.GetChildrenAndParentWhereParentName(searcher));
            }
            //If the user is searching for Driver
            if (comboBox2.Text == "Driver")
            {
                //display the data which matches the searched for Bus drivers name
                BusDBAccess bdba = new BusDBAccess(db);
                createTableToShowBus(bdba.getWhereDriverIs(searcher));
            }
            // This repeats for the rest of the IF statements, the program will update the grid to show where the data in the table matches the value that the user is searching for
            if (comboBox2.Text == "Route")
            {
                BusDBAccess bdba = new BusDBAccess(db);
                createTableToShowBus(bdba.getWhereRouteIs(searcher));
            }

            if (comboBox2.Text == "Time")
            {
                BusDBAccess bdba = new BusDBAccess(db);
                createTableToShowBus(bdba.getWhereTimeIs(comboBox3.Text, searcher));
            }

            if (comboBox2.Text == "Reason")
            {
                CancellationDBAccess cdba = new CancellationDBAccess(db);
                CreateTableToShowCancellation(cdba.GetCancellByName(searcher));
            }

            if (comboBox2.Text == "Child Name")
            {
                ChildrenDBAccess cdba = new ChildrenDBAccess(db);
                CreateTableToShowChildren(cdba.GetChildByName(searcher));
            }

            if (comboBox2.Text == "Age")
            {
                ChildrenDBAccess cdba = new ChildrenDBAccess(db);
                CreateTableToShowChildren(cdba.GetChildByAge(comboBox3.Text, searcher));
            }

            if (comboBox2.Text == "Medical Problems")
            {
                ChildrenDBAccess cdba = new ChildrenDBAccess(db);
                CreateTableToShowChildren(cdba.getChildByMedicalDetails());
            }

            if (comboBox2.Text == "Parent Name")
            {
                ParentDBAccess pdba = new ParentDBAccess(db);
                CreateTableToShowParent(pdba.SelectAllParentsWhereName(searcher));
            }

            if (comboBox2.Text == "Parent Phone")
            {
                ParentDBAccess pdba = new ParentDBAccess(db);
                CreateTableToShowParent(pdba.getParentWithPhone(searcher));
            }

            if (comboBox2.Text == "Parent Email")
            {
                ParentDBAccess pdba = new ParentDBAccess(db);
                CreateTableToShowParent(pdba.getAllParentByEmail(searcher));
            }

            if (comboBox2.Text == "Parent Address")
            {
                ParentDBAccess pdba = new ParentDBAccess(db);
                CreateTableToShowParent(pdba.getParentByAddress(searcher));
            }

            if (comboBox2.Text == "Parent Occupation")
            {
                ParentDBAccess pdba = new ParentDBAccess(db);
                CreateTableToShowParent(pdba.getParentByOccupation(searcher));
            }

            if (comboBox2.Text == "School Name")
            {
                SchoolDBAccess sdba = new SchoolDBAccess(db);
                CreateTableToShowSchools(sdba.getSchoolByName(searcher));
            }

            if (comboBox2.Text == "School Location")
            {
                SchoolDBAccess sdba = new SchoolDBAccess(db);
                CreateTableToShowSchools(sdba.getSchoolByLocation(searcher));
            }

            if (comboBox2.Text == "School Number")
            {
                SchoolDBAccess sdba = new SchoolDBAccess(db);
                CreateTableToShowSchools(sdba.getSchoolByNumber(searcher));
            }

            if (comboBox2.Text == "Paid")
            {
                string reason = textBox1.Text.ToLower();
                int    num    = 0;
                //If the user types in false or true, the program creates a variable called num which stores 0/1 depeneding on if the user has typed true or false
                switch (reason)
                {
                case "false": num = 0; break;

                case "true": num = 1;  break;
                }
                InnerJoinDBAccess injdba = new InnerJoinDBAccess(db);
                createTableToShowBookings(injdba.GetBookingWithPaid(num));
            }

            if (comboBox2.Text == "Name")
            {
                string            name   = textBox1.Text;
                InnerJoinDBAccess injdba = new InnerJoinDBAccess(db);
                createTableToShowBookings(injdba.GetBookingWithName(name));
            }
        }