上一页 1 ··· 4 5 6 7 8
摘要: MySQL 3.22限制的表大小为4GB。由于在MySQL 3.23中使用了MyISAM存储引擎,最大表尺寸增加到了65536TB(2567 – 1字节)。由于允许的表尺寸更大,MySQL数据库的最大有效表尺寸通常是由操作系统对文件大小的限制决定的,而不是由MySQL内部限制决定的。 InnoDB存 阅读全文
posted @ 2017-05-31 11:02 大瘦猴 阅读(3966) 评论(0) 推荐(0) 编辑
摘要: Date currentTime = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMddHHmmss"); String date = formatter.format(currentTime); System.out.println(date); 阅读全文
posted @ 2017-05-22 13:57 大瘦猴 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8