user1118664
user1118664

Reputation: 45

SQlite.db file not opening

I got .db file from my PM through mail. but i cannot open it using my terminal in Mac, when i type its name, it is creating a new db rather than opening a existed one.

Can anyone let me know whats the problem and how to solve it.

Upvotes: 1

Views: 5714

Answers (1)

Didier Spezia
Didier Spezia

Reputation: 73306

Copy the noble.db file into a folder you have access to in read/write mode.

Note the absolute complete path of this folder (starting with a /) - let's suppose it is /foo/bar

Start your terminal application

Type cd /foo/bar

Type sqlite3 noble.db

Upvotes: 5

Related Questions