本文实例为大家分享了python远程连接mysql数据库的具体代码,供大家参考,具体内容如下
连接数据库
这里默认大家都已经配置安装好 mysql 和 python 的mysql 模块,且默认大家的db内表和访问账号权限均已设置无误,下面直接代码演示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# -*- coding: utf-8 -*- """ created on fri dec 30 10:43:35 2016 @author: zhengyongzhe """ import mysqldb import cpickle as pk def write2file(db_data,save_filename): """数据写入本地""" with open (save_filename, 'w' ) as f: pk.dump(db_data, f)) # 创建数据库连接 conn2db = mysqldb.connect( host = '111.111.111.111' , # host port = 3306 , # 默认端口,根据实际修改 user = 'username' , # 用户名 passwd = 'passwd' , # 密码 db = 'dbname' , # db name ) cur = conn2db.cursor() # 操作游标 db_data = cur.execute( "select * from table_name;" ) # sql语句 ,查询需要到处内容 # 获取多条数据 db_datas = cur.fetchmany(db_data) # 写入本地 write2file(db_datas, 'save_table_name' ) """ # 打印表中数据,chek data for info in db_datas: print info """ cur.close() conn2db.commit() try : conn2db.close() # 关闭连接 print "closed connection..." except exception,e: print exception, ":" ,e |
以上代码演示python远程连接服务器mysql数据库,工程中还需要考虑可能出现的bug,有问题的留言。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/Eddy_zheng/article/details/53947398