fpc/packages/mysql/mkdb
1999-05-12 00:11:23 +00:00

29 lines
1.0 KiB
Bash

#!/bin/sh
#
# Script to create a table 'FPdev' and to fill it with data.
# The script accepts an optional argument :
# A database to connect to. (default 'testdb')
echo -n "Creating and filling table FPdev in database ${1-testdb}..."
mysql ${1-testdb} << EOF >/dev/null
create table FPdev (
id INT NOT NULL,
UserName CHAR(255),
InstEmail CHAR(255),
PRIMARY KEY (id),
INDEX (id) );
insert into FPdev values ('1','Michael Van Canneyt','Michael@tfdec1.fys.kuleuven.ac.be');
insert into FPdev values ('2','Florian Klaempfl','ba2395@fen.baynet.de');
insert into FPdev values ('3','Carl-Eric Codere','codc01@gel.usherb.ca');
insert into FPdev values ('4','Daniel Mantione','d.s.p.mantione@twi.tudelft.nl');
insert into FPdev values ('5','Pierre Muller','muller@europe.u-strasbg.fr');
insert into FPdev values ('6','Jonas Maebe','jmaebe@mail.dma.be');
insert into FPdev values ('7','Peter Vreman','pfv@worldonline.nl');
insert into FPdev values ('8','Gerry Dubois','gerry@webworks.ml.org');
EOF
if [ ! $? = 0 ]; then
echo "Failed."
else
echo "Done."
fi
# Ready