码迷,mamicode.com
首页 > 数据库 > 详细

python写入mysql

时间:2018-03-29 02:18:15      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:passwd   etc   log   from   nbsp   user   host   highlight   sel   

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

标签:passwd   etc   log   from   nbsp   user   host   highlight   sel   

原文地址:https://www.cnblogs.com/qiangayz/p/8667397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!