<应用RAILS进行敏捷WEB开发>是基于什么平台写的?

<应用RAILS进行敏捷WEB开发>是基于什么平台写的?

<应用RAILS进行敏捷WEB开发>是基于什么平台写的?
在第6章一开头,就难倒我了
因为按照他上面的命令我不能新建数据库表啊。..
我的平台是XP+MYSQL+PHPADMIN
在PHPADMIN里应该怎么输入他上面说的那些命令?
就是这些...
--
create database depot_1;
create database depot_2;
create database depot_3;
grant all on depot_1.*to 'dave@localhost';
grant all on depot_2.*to 'dave@localhost';
grant all on depot_3.*to 'prod@localhost' identitioed by 'wibble';
我在PHPADMIN里已经新建搞定了
"create database depot_1;
create database depot_2;
create database depot_3;"
但是不知道后面的:
"grant all on depot_1.*to 'dave@localhost';
grant all on depot_2.*to 'dave@localhost';
grant all on depot_3.*to 'prod@localhost' identitioed by 'wibble';
"
应该怎么理解和解释?
我查过字典,是授权给某用户的,应该怎么做?
identitioed by 'wibble'
是啥意思?
我英语不好,请不要见怪..

grant all on depot_1.*to 'dave@localhost';
grant all on depot_2.*to 'dave@localhost';
grant all on depot_3.*to 'prod@localhost' identitioed by 'wibble';
"
说的是什么意思呢?
是在MySQL的console里面输入的SQL命令。
grant 是sql里面用于修改数据库/表访问权限的命令。
详见MySQL的reference。
如果安装了mysql,在命令行下直接运行mysql后,即可输入这些命令了。
我回去试试去
谢谢~!