我使用 python con = _mysql.connect('localhost', 'dell-pc', '', 'test')
连接到 mysql 数据库
我编写的程序在完全执行时需要很多时间,也就是大约10个小时。事实上,我正在尝试从语料库中读出不同的单词。
读取结束后,出现超时错误。
我检查了 Mysql 的默认超时:
+----------------------------+----------+
| Variable_name | Value |
+----------------------------+----------+
| connect_timeout | 10 |
| delayed_insert_timeout | 300 |
| innodb_lock_wait_timeout | 50 |
| innodb_rollback_on_timeout | OFF |
| interactive_timeout | 28800 |
| lock_wait_timeout | 31536000 |
| net_read_timeout | 30 |
| net_write_timeout | 60 |
| slave_net_timeout | 3600 |
| wait_timeout | 28800 |
+----------------------------+----------+
如何更改默认超时?