I need to insert records into a sybase database. Using 2 for loops,
1 for the row, and another for the column, i'm able to loop thru e
worksheet and insert the records.
However, what happens if I have an error in 1 of the records, and it
doesn't get inserted, but I want the error record to be output to an
error log file so that I will know which record wasn't inserted.
I have also put in On Error Resume Next, so that even though there
might b an error record in the middle of the data, the insertion
would skip the error record and continue inserting the rest of the
proper records.
My problem is how to extract the faulty record and put it in an
error log file.