One. Mac install MySQL
Download MySQL First, address: https://dev.mysql.com/downloads/mysql/
Then you know the installation is good, there will be a hint to remember the password, and then installed ....
To change the password, refer to: http://blog.csdn.net/soft2buy/article/details/50223373
Two. Terminal Operation MySQL
First find MySQL in System preferences, such as left one, then open, run MySQL, make it appear running, such as the right one.
Then open the terminal and enter the MySQL path/usr/local/mysql/bin/mysql-u root-p
Then enter the password (the password is your MySQL password, no change is when you install the initial password or no password)
Create a database with the following table:
1 #CREATE DATABASE: Scrapydb, in UTF8 bit encoded format, each statement ending with '; '2CREATE DATABASE scrapydb CHARACTER SET'UTF8';3 4 #Select the table you just created:5 Use scrapydb;6 7 #Create the fields we need: Fields to match one by one of our code, so we can write SQL statements in a minute .8 CREATE TABLE Weather (9 ID INT auto_increment,TenDate char (24), OneWeek CHAR (24), AIMG Char (128), -Temperature char (24), -Weather Char (24), theWind char (24), - PRIMARY KEY (ID) -) Engine=innodb DEFAULT charset='UTF8';
1 #CREATE DATABASE: Scrapydb, in UTF8 bit encoded format, each statement ending with '; '2CREATE DATABASE scrapydb CHARACTER SET'UTF8';3 4 #Select the table you just created:5 Use scrapydb;6 7 #Create the fields we need: Fields to match one by one of our code, so we can write SQL statements in a minute .8 CREATE TABLE Weather (9 ID INT auto_increment,TenDate char (24), OneWeek CHAR (24), AIMG Char (128), -Temperature char (24), -Weather Char (24), theWind char (24), - PRIMARY KEY (ID) -) Engine=innodb DEFAULT charset='UTF8';
See what the weather table looks like
from Weather or: desc weather
For other MySQL operations please refer to the official documentation or http://www.runoob.com/mysql/mysql-tutorial.html
Three. Visualization of the database through the Pycharm databases setting
First open the Pycharm, through the views----Windows--Database open, click the Add button, will let us choose the data Source, basically databases have (here we choose MySQL), Fill in the User and password, click Test Connection (if test Connection can not be used, should be driver not downloaded, the page has a download button, a single direct download can be).
If our username and password are correct, successful will be displayed at this point.
Click on the OK button at this time, on the right side of pycharm can be viewed.
Direct stand-alone table name to view the contents of the database
The above is through the Pycharm database to realize the visualization of databases.
Mac installation MySQL and terminal operation MySQL and pycharm database visualization