I am kinda new to sqlite3 I am toying with Ruby on Rails and I wanted to have more info about the command .dump in the sqlite3 console. But I forgot to add .help at the end so It kinda removed the link between my main and the file it was attached to.
Now I am trying to attach my file to my main database but it always says;
"Error: database main is already in use"
what I was seeing using the command .database was looking like this
seq name file
--- --------------- ----------------------------------------------------------
0 main C:\xampp\htdocs\FirstProject\first_app\db\development.sqli
1 temp
but now it kinda look like that :

I have been looking on the internet for a little while now and I can't really find an answer to that problem. I finally rake db:setup and my migration came back and everything but it did not fix the problem with sqlite3.
The up side is that I can still add things via rails console but I can't list or check the content of my database via sqlite3 prompt command.
So if anyone have an idea for my problem it will be really appreciated.