Create a books database to include felds for ISBN number, title, copyright date, primary author, publisher, and number of pages. Place the fields on a Book table. The type of database (SQL Server or Access) will be determined by your instructor. Populate the table with book in your current collection, including the books you are using for your classes. Write a C# program to display the title, primary author, and copyright date in a gridlike structure.
Add a second table to the Books database that you created in Exercise 7 to include fields for course number and ISBN. Place these fields in a CourseBook table. Populate the table with books in your current collection. Books that are not assciated with a specific course can be placed in the table with a FUN course number. Write a C# program to display the course number and ISBN number in text boxes with appropriate labels. Each record should be displayed on a separate screen.