關於MySQL中pymysql安裝的問題。

來源:互聯網
上載者:User

標籤: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安裝的問題。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.