Is there any way to loop through all the fields in a table within say, a triiger or a stored procedure, the way it can be done in ADO. What I am trying to accomplish is similar to the following code in ADO:
for x = 0 to MyTable.Fields.Count
debug.print MyTable.Fields(x).value
Next x
I know that this might not be possible, but is there a workaround? I find myself in this situation quite often and end up using a list of field names, which can become impossible to manage...
Thanks in advance...
for x = 0 to MyTable.Fields.Count
debug.print MyTable.Fields(x).value
Next x
I know that this might not be possible, but is there a workaround? I find myself in this situation quite often and end up using a list of field names, which can become impossible to manage...
Thanks in advance...