您好我想将数据例如12321(示例号)数字插入数据库中的表。 我想把这个大数字划分为4个包: 第一次(从1到3080) 第二(从3081年至6160年) 第三(来自6161 - 9241) 最后(从9241到12321)
我的代码正常添加(不包括分组):
allRowsInCSVFile = CSVReaderTwo.readFile(fileName.toString());
// allRowsInCSV.size its this 12321 number in example
//and there should be for which will make it 4 time
prepareDataToInserting(allRowsInCSVFile, allParameters, connection);
//there is a for() counting by allRowsInCSVFile
insertPreparedDatasIntoDataBase(allParameters, connection);
任何人都可以帮我使用create方法,该方法将使用方法:prepareDataToInserting(...)和insertPreparedDatasIntoDataBase(...) 在范围内......?