如何使用mysql创建rails 3.1应用程序

时间:2022-07-21 07:12:28

How to create a rails 3.1 application using mysql. The following command used to create the project with sqlite database.

如何使用mysql创建rails 3.1应用程序。以下命令用于使用sqlite数据库创建项目。

rails new depot

I'd like to use mysql then sqlite. So can anyone tell me how to create a project with mysql.

我想使用mysql然后sqlite。所以任何人都可以告诉我如何用mysql创建一个项目。

Thanks

2 个解决方案

#1


12  

See help for rails new command

请参阅rails new命令的帮助

rails new --help

-d, [--database=DATABASE]

Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db) # Default: sqlite3

所选数据库的预配置(选项:mysql / oracle / postgresql / sqlite3 / frontbase / ibm_db)#默认值:sqlite3

#2


11  

You should use:

你应该使用:

rails new depot -d mysql

#1


12  

See help for rails new command

请参阅rails new命令的帮助

rails new --help

-d, [--database=DATABASE]

Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite3/frontbase/ibm_db) # Default: sqlite3

所选数据库的预配置(选项:mysql / oracle / postgresql / sqlite3 / frontbase / ibm_db)#默认值:sqlite3

#2


11  

You should use:

你应该使用:

rails new depot -d mysql