I have 7000 pieces of data to process.
However, after the following logical processing, I found that only 210 entries actually entered the database。
data = GetData();
while(data.next())
{
TableTmp.clear();
.......
list.add(TableTmp);
}
Table.truncate();
list.insertDatabase();