java 50万数据导入,JDBC向sql server插入50万条数据出现:ava.lang.OutOfMemoryError: Java heap space...
不知道甚么原因,但是插入15万就可以并且在40秒内完成,我的逻辑是这样的PreparedStatement ps =conn.prepareStatement( "INSERT into code values (?,?)");Date t=(Calendar.getInstance()).getTime();System.out.print("循环开始"+t);Set s=new HashSet...