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

python mysql Connect Pool mysql连接池 (201

时间:2016-09-29 07:50:34      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

 easy_install mysql-connector-python

>>>import mysql.connector as conner
>>> conn = conner.connect(user="root", passwd="kaimen", db="zentao", port=3306, pool_name = "mypool", pool_size = 3,)
>>> cursor = conn.cursor()
>>> cursor.execute("show tables");
>>> cursor.fetchall()
[(u‘task‘,)]
 
>>> cursor = conn.cursor(cursor_class=conner.cursor.MySQLCursorDict)
>>> cursor.execute("show tables");
>>> cursor.fetchall()
[{u‘Tables_in_zentao‘: u‘task‘}]
 
>>> cursor = conn.cursor(dictionary=True)
>>> cursor.execute("show tables");
>>> cursor.fetchall()
[{u‘Tables_in_zentao‘: u‘task‘}]

python mysql Connect Pool mysql连接池 (201

标签:

原文地址:http://www.cnblogs.com/kungfupanda/p/5918547.html

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