1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Adding doc for Sqlite3 database for Jruby platform #jruby

This commit is contained in:
Arun Agrawal 2011-06-15 07:36:04 +05:30
parent f391f94428
commit d5b1cf592b

View file

@ -258,6 +258,16 @@ development:
Change the username and password in the +development+ section as appropriate.
h5. Configuring an SQLite3 Database for Jruby Platform
If you choose to use SQLite3 and using Jruby, your +config/database.yml+ will look a little different. Here's the development section:
<yaml>
development:
adapter: jdbcsqlite3
database: db/development.sqlite3
</yaml>
TIP: You don't have to update the database configurations manually. If you had a look at the options of application generator, you have seen that one of them is named <tt>--database</tt>. It lets you choose an adapter for couple of most used relational databases. You can even run the generator repeatedly: <tt>cd .. && rails new blog --database=mysql</tt>. When you confirm the overwriting of the +config/database.yml+ file, your application will be configured for MySQL instead of SQLite.
h4. Creating the Database