up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to find the sqlite database file that rails creates.

Sorry if this is a dumb question but which folder is this file stored in?

I've looked in all of the folders in my Rails project and can't find it.

My database.yml:

   development:
      adapter: sqlite3
      database: db/development.sqlite3
      pool: 5
      timeout: 5000
link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

It's in RAILS_ROOT/db/development.sqlite3

link|improve this answer
Thanks ! – carson welsh May 27 '09 at 0:18
feedback

FWIW the file might not exist if you haven't done rake db:create yet.

link|improve this answer
feedback

You can find your database file after you have give "scaffold" command at following directory If you are in your project folder then then go to "DB" folder then you can see "development.sqlite3" file this is the sqlite database file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.