获取游标 cursor = conn.cursor() # 获取所有表名 cursor.execute("show tables") tables = cursor.fetchall() # 遍历每张表格 for table in tables: table_name = table[0] # 查询表格中所有列名 cursor.execute(f"select column_name from information_schema.columns where table_name='{table_name}'") columns = cursor.fetchall() # 判断a和b列是否存在 if ('a',) in columns and ('b',) in columns: continue # 如果a和b列不存在,则增加这两列 cursor.execute(f"alter table {table_name} add column a decimal(10,2), add column b decimal(10,2)") # 提交修改并关闭连接 conn.commit() conn.close() 给代码增加多线程,避免出现raise err.InterfaceError(0, "") InterfaceError: (0, '')
时间: 2024-01-12 17:02:35 浏览: 59
pythonmssql数据库开发-Python连接Mssql基础教程之Python库pymssql.pdf
好的,可以使用Python内置的`concurrent.futures`库来实现多线程,并将数据库连接作为参数传递给线程函数。代码修改如下:
```python
import pymysql
import concurrent.futures
def process_table(conn, table_name):
try:
cursor = conn.cursor()
cursor.execute(f"select column_name from information_schema.columns where table_name='{table_name}'")
columns = cursor.fetchall()
if ('a',) in columns and ('b',) in columns:
cursor.close()
return
cursor.execute(f"alter table {table_name} add column a decimal(10,2), add column b decimal(10,2)")
cursor.close()
except pymysql.err.InterfaceError as e:
print("InterfaceError:", e)
def main():
conn = pymysql.connect(host='localhost', port=3306, user='root', password='password', db='daily')
cursor = conn.cursor()
cursor.execute("show tables")
tables = cursor.fetchall()
cursor.close()
with concurrent.futures.ThreadPoolExecutor() as executor:
futures = [executor.submit(process_table, conn, table[0]) for table in tables]
concurrent.futures.wait(futures)
conn.commit()
conn.close()
if __name__ == '__main__':
main()
```
这段代码将数据库连接作为参数传递给`process_table`函数,避免了多个线程同时访问同一个数据库连接的问题。然后使用`ThreadPoolExecutor`创建线程池,并发地调用`process_table`函数处理每张表格。在`process_table`函数中增加异常处理语句,避免出现`InterfaceError`错误。最后提交修改并关闭连接。
多线程可以提高程序的并发性和效率,但需要注意线程安全问题,比如避免多个线程同时访问同一个数据库连接。同时,在多线程编程中需要注意异常处理,避免出现未处理的异常导致程序崩溃。
阅读全文