简体   繁体   中英

How to use/select a MYSQL database on my desktop

I have a database file on my desktop that I am trying to open through my terminal.

my database is called: myDB.db

I tried using: mysql -u myDB.db -p

Thank you!!!


SOLVED for mysql! (Thank you Duffymo)

mysql -h localhost -u -p

>use [databaseName];

Also for sqlite you can do it this way:

sqlite3 [databaseName]
>.tables

I use the command line this way:

http://dev.mysql.com/doc/refman/5.6/en/mysql.html

mysql -h localhost -u <admin user name> -p

I'm prompted for the admin or user password.

When I get into MySQL I specify which database I want to work with:

use X;

where X is the name of the schema I'm interested in.

At that point I can execute SQL commands.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM