I have a table w/ approx 50 fields in it. Basically what I want to do is for each record in the table I want to insert a new record but only change a handful of fields. The table contains customer data and now I want to add spousal information for each customer. Essentially all of the data will remain the same, but the names will obviously change as well as the relation type.
I do not want to have to create an insert command for all 50 fields, and I am looking for a quick way to do this. Is there a way to cycle through the fields in a Reader object and easily append values to a string? I guess I'm looking for something like:
strsql="insert into <TABLE> ("
for each field in reader
strsql+=field.name
loop
strsql+=") values ("
for each field in reader
if field.name="fieldtochange" then
strsql+="newvalue"
else
strsql+=field.value
end if
loop
I do not want to have to create an insert command for all 50 fields, and I am looking for a quick way to do this. Is there a way to cycle through the fields in a Reader object and easily append values to a string? I guess I'm looking for something like:
strsql="insert into <TABLE> ("
for each field in reader
strsql+=field.name
loop
strsql+=") values ("
for each field in reader
if field.name="fieldtochange" then
strsql+="newvalue"
else
strsql+=field.value
end if
loop