I have an inner join between 2 tables that have the same fields.
I need the syntax to read the values from the recordset specifying from which table to get the value.
In VB 6 it could be written for example as follows:
rs!Table.column
In VB.NET when I write
rs(“Table.column”)
It gives me the following error:
“An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in adodb.dll
Additional information: Item cannot be found in the collection corresponding to the requested name or ordinal.”