首页 > 学院 > 开发设计 > 正文

python连接数据库-设置oracle,mysql中文字符问题

2019-11-14 16:57:08
字体:
来源:转载
供稿:网友
 1 import cx_Oracle 2 import MySQLdb 3  4 def conn_oracle(): 5     cnn = cx_Oracle.connect('用户名','密码','ip:端口号/数据库') //用户名,密码,ip端口号数据库 6     cur = cnn.cursor() 7     return cnn,cur 8  9 10 def close_oracle(cnn,cur):11     cur.close()12     cnn.close()13 14 def conn_mysql():15     cnn = MySQLdb.connect(user="用户名",passwd='密码',host='localhost',db='数据库',charset='utf8') 用户名,密码,ip,数据库,字符设置16     cur = cnn.cursor()17     return cnn,cur18 19 def close_mysql(cnn,cur):20     cur.close()21     cnn.close()

注意:1、oracle 设置字符集,假设有中文

oracle 设置字符集import osos.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8'

2、 mysql 设置字符集 charset=''

MySQLdb.connect(user="用户名",passwd='密码',host='localhost',db='数据库',charset='utf8') 

在python 中中文字符是最烦人的。

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表