Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This application will read roster data in JSON format, parse the file, and then produce an SQLite database that contains a User, Course, and Member

This application will read roster data in JSON format, parse the file, and then produce an SQLite database that contains a User, Course, and Member table and populate the tables from the data file.

You can base your solution on this code: http://www.py4e.com/code3/roster/roster.py- this code is not proper as you need to modify the program to store therolecolumn in theMembertable to complete the assignment.Downloadthis fileand save it asroster_data.json. Move the downloaded file into the same folder as yourroster.pyprogram.

Once you have made the necessary changes to the program and it has been run successfully reading the above JSON data, run the following SQL command:

SELECT hex(User.name || Course.title || Member.role ) AS X FROM User JOIN Member JOIN Course ON User.id = Member.user_id AND Member.course_id = Course.id ORDER BY X 

Find thefirstrow in the resulting record set and enter the long string that looks like53656C696E613333.

the code starts with 416

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions