# 插入与上一篇变化不大,只是需要进行确认操作.
增加确认操作的方法有两种(假设类对象为a):
1.在连接时传入一个参数:autocommit=True
a=Connection(
host="localhost",
port=3306,
user="root",
password="自己的密码",
autocommit=True
)
a=Connection(
host="localhost",
port=3306,
user="root",
password="自己的密码",
autocommit=True
)