Locate Database File in SQLITE
Posted
by Nagendra Baliga
on Stack Overflow
See other posts from Stack Overflow
or by Nagendra Baliga
Published on 2010-03-09T09:24:18Z
Indexed on
2010/03/09
9:36 UTC
Read the original article
Hit count: 222
I have created a file named "MyFile.db" using SQLite3 from my C#.net application. This file got created in my "D:\MyProject\bin" folder. I have created a table named "MyTable" inside "MyFile.db" from same C# app.
Now I am running sqlite3.exe from my "C:\" drive to get Command Line Shell For SQLite.
How can I get the file "D:\MyProject\bin\MyFile.db" in the SQLite Command Line Shell i.e, how can I locate the file "MyFile.db" in the command shell to get the data from "MyTable".
© Stack Overflow or respective owner