python写入mysql

Posted 梦中琴歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python写入mysql相关的知识,希望对你有一定的参考价值。

import pymysql
conn = pymysql.connect(host=‘192.168.70.129‘,port=3306,user=‘root‘,passwd=‘123456‘,db=‘my‘)
cursor = conn.cursor()
cursor.execute("select * from student")
row_1 = cursor.fetchone()
print row_1
cursor.close()
conn.close()

 

以上是关于python写入mysql的主要内容,如果未能解决你的问题,请参考以下文章

第一篇博客(python爬取小故事网并写入mysql)

从 Android Studio 中的片段将数据写入 Firebase

Python3 关于excel 文件格式xls之读取写入和追加

记录C#常用的代码片段

python运用mysql代码块,可跨文件调用

python运用mysql代码块,可跨文件调用