python怎么将数据保存到mysql Python怎么将数据保存到文件中

主机教程 建站分享 2年前 (2022-11-13) 195次浏览

文章摘要:python怎么将数据保存到mysql Python怎么将数据保存到文件中

python将数据保存到mysql的示例代码: import MySQLdb # conn […]

python将数据保存到mysql的示例代码:

import MySQLdb

# connect MySQL

conn = MySQLdb.connect(

host= ,

user= ,

passwd= ,

db= ,

port= ,

charset='utf8')

cursor = conn.cursor()

filter_merge_len = len(filter_merge_data)

for x in range(filter_merge_len):

try:

cursor.execute(

"insert into database_name.table_name(date,monitor_item, host_ip, cluster

, software, alarm_hit) values('%s','%s','%s','%s','%s','%d')" %

(yest_date, filter_merge_data.iloc[:, 0][x],

filter_merge_data.iloc[:, 1][x],

filter_merge_data.iloc[:, 2][x],

filter_merge_data.iloc[:, 3][x],

filter_merge_data.iloc[:, 4][x]))

# 提交到数据库执行

conn.commit()

except Exception as e:

print 'Insert Failed'

# close

conn.commit()

cursor.close()

conn.close()


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么将数据保存到mysql Python怎么将数据保存到文件中
文章链接:http://www.7966.org/post/12700.html
转载请注明出处

喜欢 (0)