Like I said, the default values in the columns are part of the database design. In order to go back, when you do the original insert, you're going to have find the index values of the new rows and use them for the update. Insert will not work since it will create new rows. I don't use the database toolkit, but when I want to update a column in a single row, the SQL syntax would be something like "update table_name set column_name = x where id = y". For another column, set specify the additional column name in the SQL statement. I'm not sure about updating multiple rows. I think it's possible but the actual syntax escapes me. A good SQL reference would be of help. Of course, your other option is to just defer the database writes until you ha
ve all of the data.