MySQL basics: Difference between revisions

From GotOpinion
Jump to navigation Jump to search
New page: =Getting Started= ==Connecting to MySQL==
 
Line 2: Line 2:


==Connecting to MySQL==
==Connecting to MySQL==
To access a database from the command line, use:
mysql -u username -ppassword -h hostname databasename
Note: There is no space between the -p and the password.

Revision as of 14:52, 15 July 2007

Getting Started

Connecting to MySQL

To access a database from the command line, use:

mysql -u username -ppassword -h hostname databasename

Note: There is no space between the -p and the password.