Unlock access to all the studying documents.
View Full Document
Database Project: (Due October 16)
1. Create a table named User with columns username (varchar(100)) and password (varchar(100)).
The username is the primary key in the table. Create a JSF page to enable the user to create
accounts. The username confirms to the Java identifier rule.
Create table User (username varchar(100) primary key, password varchar(100));
Create table Log(username varchar(100) primary key, loginTime time);
insert into Log values (‘john’, now());
What to submit?