create table intro10e (
chapterNo integer,
questionNo integer,
isCorrect bit default 0,
time timestamp default current_timestamp,
hostname varchar(100),
For each question submitted, store username, chapterNo, questionNo, isCorrect, time,
hostname, and the choices selected (answerA, answerB, answerC, answerD, answerE).
Hostname is the user IP address.
What to submit?
Email me if you have any questions.
Check list for submitting the project:
1. Are your quiz data files stored in c:\selftest\selftest10e? You should have files
c:\selftest\selftest10e\chapter1.txt, c:\selftest\selftest10e\chapter2.txt, …, and
c:\selftest\selftest10e\chapter43.txt.
2. Is project named YourLastName?
3. Is your database named selftest with uername/password being scott/tiger?
4. Is your table User defined correctly?