python 链接mysql 连接池


# python 链接mysql
import mysql.connector.pooling
config = {
"host":"localhost",
"port": 3306,
"user" : "root",
"password" : "",
"database" : "demo"
}

try:
pool = mysql.connector.pooling.MySQLConnectionPool(
**config,
pool_size = 10
)
con = pool.get_connection()
con.start_transaction()
cursor = con.cursor()
sql = "UPDATE t_emp set sal = sal + %s where deptno = %s"
cursor.execute(sql,(200, 20))
con.commit()
except Exception as e:
if 'con' in dir():
con.rollback
print(e)




















免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM