		TEMA IV A.
		Programaciion de sistemas con Bases de Datos
+ MySQL

	+ Creacion de un usuario

	grant all on cib611.* to cib611@localhost identified by "perldbi"

	+ Creacion de una base de datos
	mysql -u cib611 -p


Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9 to server version: 3.23.22-beta-log

Type 'help' for help.

mysql> create database cib611;
Query OK, 1 row affected (0.00 sec)

mysql> quit
Bye

	+ Creacion de tabla
create table megaliths (
    id INTEGER NOT NULL PRIMARY KEY,
    name VARCHAR(64),
    location VARCHAR(64),
    description VARCHAR(255),
    site_type_id INTEGER,
    mapref VARCHAR(16)
 );

+ DataBase Interfase de PERL.

