topical media & game development
mashup-delicious-06-example6-4.sql / sql
create database example_contacts;
grant all on example_contacts.* to 'contacts_user'@'localhost' identified by
'password';
set password for 'contacts_user'@'localhost' = old_password('password');
use example_contacts;
create table contacts (
id int(255) not null auto_increment,
name varchar(255) not null,
company varchar(255) not null,
primary key (id)
);
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.