Hello,
 
I have a page that you load an excel file and read each line converting it to 
records.
 
It works fine with no errors anywhere but out of 15855 lines it only actually 
puts in 11272 records but my count on the loop shows 15855 and I cannot figure 
out why these records are not saving with no errors being produced.
 
This is my basic logic(I have tried @CommitAfter but using 
_session.beginTransaction and commit at each save actually produced some errors 
I was able to fix that @CommitAfter did not)
 
Loop Lines{
     ReadLine{
        readCells(line)
}}
 
 
 
readCells(line){
   loopCells{
      read cell and put in corresponding field
      fields that link, check if the field is in the foreign table, if not add 
it and put id in field
   }
}
 
Again I have tried using @CommitAfter however using the beingTransaction/commit 
around each save produced more errors IE: invalid date format in a date field 
etc. but now there are NO errors being thrown.
 
Are there errors I cannot see somehow?
 
Thanks,
--James
 
 
         


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to