Hi!!!!
I have this code in a MS VB6 adodc recordsource:
SELECT stat.DescripcionEst, inm.*
FROM (inm LEFT JOIN stat ON inm.Estado = stat.IdEstadoInmueble) ORDER BY inm.IdInm
It shows records ok, fast and linked. But when I try to change any value, an error says: Not enough key column info... and I can't update.
I use client cursor, R/W access, etc, etc. I want to know if Left Join selects can be R/W, or only are ReadOnly.
If they are R/W, where am I mistaking?
Lots of thanks
I have this code in a MS VB6 adodc recordsource:
SELECT stat.DescripcionEst, inm.*
FROM (inm LEFT JOIN stat ON inm.Estado = stat.IdEstadoInmueble) ORDER BY inm.IdInm
It shows records ok, fast and linked. But when I try to change any value, an error says: Not enough key column info... and I can't update.
I use client cursor, R/W access, etc, etc. I want to know if Left Join selects can be R/W, or only are ReadOnly.
If they are R/W, where am I mistaking?
Lots of thanks