ItEr13S11XestionDaComunidadeItEr12S13: Added instructions to create the database in MySQL at README.txt.

This commit is contained in:
Manuel Rego Casasnovas 2009-06-16 15:49:45 +02:00 committed by Javier Moran Rua
parent 7ca314c56e
commit 967c18eaf1

View file

@ -14,9 +14,13 @@ CREATE DATABASE navaldevtest;
- Create user "naval" with password "naval" with necessary privileges for - Create user "naval" with password "naval" with necessary privileges for
accessing (creating tables, selecting data from tables, etc.) the accessing (creating tables, selecting data from tables, etc.) the
previous databases. previous databases.
* PostgreSQL:
CREATE USER naval WITH PASSWORD 'naval'; CREATE USER naval WITH PASSWORD 'naval';
GRANT ALL PRIVILEGES ON DATABASE navaldev TO naval; GRANT ALL PRIVILEGES ON DATABASE navaldev TO naval;
GRANT ALL PRIVILEGES ON DATABASE navaldevtest TO naval; GRANT ALL PRIVILEGES ON DATABASE navaldevtest TO naval;
* MySQL:
GRANT ALL ON navaldev.* to 'naval'@'localhost' identified by 'naval';
GRANT ALL ON navaldevtest.* to 'naval'@'localhost' identified by 'naval';
+ For HSQLDB. There is nothing to do. + For HSQLDB. There is nothing to do.