How does one open a SQLite Expert database by using command prompt in windows XP? My database file extension is s3db and SQLite Expert exe file name is SQLiteExpertPers.exe.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Open a shell. (Start | Run, type
cmd, and push the “Ok” button.)Change to the drive and directory your SQLite database is in. If your database is in “My Documents”, you’d type
and hit the [Enter] key.
If you’re joined to a Windows domain, you’d type
Then run SQLite3, and give it the name of your database.
The error message
means sqlite3 is not in your path. Either provide the full path to sqlite3.exe
or change the path setting (Control panel, System, “Advanced” tab, “Environment Variables” button).
Once you’re in, type
.tablesat the sqlite prompt to make sure you’re in the right database.