Java program

Write a text-based, Java program. Everything will be done in Java: creating and dropping tables, inserting, deleting and updating tables. You will be working with your group to come up with your own database that contains 2 tables, a parent table and a child table, such as Party and Candidate (Should be a one to many relationship). Prefix your table names with a funky group name to avoid collisions. DO NOT USE Party and Candidate or Person and Personality as your tables. Come up with your own. At the end of your program, be sure to drop your tables, which means that every time you run your program, you will be creating the tables. Modularize your code. Your methods should not contain more than 20 lines.