程序员之家做技术的自己(http://bbs.it-home.org)
发布时间:2014-09-27 14:53:49
本文介绍下,有关mysql数据库中连接超时问题的解决办法,有需要的朋友参考下。使用Connector/J连接MySQL数据库,程序运行较长时间后报以下错误: Communications link failure,The last packet successfully received from the server was *** millisecond ago.The last packet successfully sent to the server was .........【阅读全文】
发布时间:2014-09-27 14:51:50
create function select_autoincrement_id() returns int(11)beginselect max(id)+1 from table_name;end但是,此方法会有并发方面的问题,如两个事务中就可能获取到同一个id而其中一个失败,所以需要锁表: create function select_autoincrement_id() returns int(11)beginselect max(id)+1 from table_na.........【阅读全文】