# 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)



















相关文章:

  • 2021-10-15
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2021-12-08
猜你喜欢
  • 2021-08-02
  • 2022-12-23
  • 2021-08-04
  • 2022-12-23
  • 2021-12-15
  • 2022-01-19
  • 2021-11-22
相关资源
相似解决方案