create database delicious_summary2; grant all on delicious_summary2.* to 'delicious_sql'@'localhost' identified by 'password'; set password for 'delicious_sql'@'localhost' = old_password('password'); use delicious_summary2; create table linkroll ( time_retrieved datetime not null, serialized_data_array blob not null, index linkroll_time_retrieved (time_retrieved) ); /* note: other tables are created as you complete the project! please see the book for more information */