Home  >  Article  >  Database  >  net-MySql每天在同一个时间点报错:Timeout expired.

net-MySql每天在同一个时间点报错:Timeout expired.

WBOY
WBOYOriginal
2016-06-06 09:33:291665browse

net数据库循环插入mysql数据同步

连接:局域网内连接;
Mysql安装方式:以Windows服务的方式启动,mysqld install 服务名,配置文件只有一个my.ini文件;
数据库访问方式:调用程序集MySql.Data.dll,版本5.0.9.0;
程序:定时每分钟往局域网内的服务器插入数据,分实时数据和历史数据;
历史数据:每分钟统计好所有数据,一次性以“insert 表名 Value(),()....”的方式插入;
实时数据:每分钟等历史数据插完,以循环方式插入每条数据,循环中数据库连接每次都Open和Close;
出错:每天都在中午11:55分插入实时数据时报错“**imeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.**”而且每天报错时插入的数据都时同一条;
采取措施:已经在ini配置文件中加入配置interactive_timeout=604800;wait_timeout=604800。
但是问题一直得不到解决,希望有人能帮我分析下问题到底出现在哪里;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn