From 967c18eaf14d2a0a93e42307f2bc22d55bb3cda6 Mon Sep 17 00:00:00 2001 From: Manuel Rego Casasnovas Date: Tue, 16 Jun 2009 15:49:45 +0200 Subject: [PATCH] ItEr13S11XestionDaComunidadeItEr12S13: Added instructions to create the database in MySQL at README.txt. --- README.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.txt b/README.txt index ebbb96bca..40217a7bd 100644 --- a/README.txt +++ b/README.txt @@ -14,9 +14,13 @@ CREATE DATABASE navaldevtest; - Create user "naval" with password "naval" with necessary privileges for accessing (creating tables, selecting data from tables, etc.) the previous databases. + * PostgreSQL: CREATE USER naval WITH PASSWORD 'naval'; GRANT ALL PRIVILEGES ON DATABASE navaldev 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.