I have a table that is used to store default values. It has two rows, one which has the default values and one which has the generic, original defaults. It is set up like so:
tblDefaults
-----------
ID
field1
field2
...
fieldN
The current defaults row has an ID of 1 while the generic defaults row has an ID of 0. I need to be able to reset the current row to the generic row without removing the generic row. Is there a way to do this without losing the generic row, without creating a new table, and without having to explicitly set each individual field?
Thanks for any help,
Tom
tblDefaults
-----------
ID
field1
field2
...
fieldN
The current defaults row has an ID of 1 while the generic defaults row has an ID of 0. I need to be able to reset the current row to the generic row without removing the generic row. Is there a way to do this without losing the generic row, without creating a new table, and without having to explicitly set each individual field?
Thanks for any help,
Tom