Questions tagged «lastinsertid»



6
当整数列上的auto_increment达到数据库中的max_value时会发生什么?
我正在实现一个数据库应用程序,我将同时使用JavaDB和MySQL作为数据库。我的表中有一个ID列,其类型为整数,并且使用数据库auto_increment-function作为值。 但是,当我获得超过2(或4)十亿个帖子并且整数不够时,会发生什么?整数溢出并继续还是抛出了我可以处理的异常? 是的,我可以更改为数据类型,但是如何检查何时需要?而且我认为,如果我将long用作ID列的数据类型,则获取last_inserted_id()函数会出现问题。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.