標籤:pytho 情況 com fetch hone import rom install pymysql
一 一般情況下我們直接在終端輸入:
pip3 install pymysql
就能夠自動安裝成功。
但是有時候我們必須先指定一個python解譯器:
比如我們指定python3在終端cmd輸入:python3 -m pip install pymysql就行了。。。。。。。。。。。
等安裝成功之後,我們就可以在pycahrm中直接import pymysql匯入啦:
import pymysql #pip3 install pymysqlconn=pymysql.connect( host=‘127.0.0.1‘, port=3306, user=‘root‘, password=‘123‘, database=‘db42‘, charset=‘utf8‘)cursor=conn.cursor(pymysql.cursors.DictCursor)# rows=cursor.execute(‘show tables;‘)rows=cursor.execute(‘select * from class;‘)print(rows)# print(cursor.fetchone())# print(cursor.fetchone())# print(cursor.fetchmany(2))# print(cursor.fetchall())# print(cursor.fetchall())# print(cursor.fetchall())# cursor.scroll(3,‘absolute‘)# print(cursor.fetchone())print(cursor.fetchone())print(cursor.fetchone())cursor.scroll(1,‘relative‘)print(cursor.fetchone())cursor.close()conn.close()
關於MySQL中pymysql安裝的問題。