I have a VFP7 application which uses Remote Views to access data within a Informix database running on a Linux box. For the most part the Remote Views work well.
However there are a few tables which have a field (rowid) in it which is "hidden". While all the other fields show up, this "hidden" field will not appear within the Remote View designer.
Within the Linux box if you perform a "normal" SQL query such as:
SELECT * FROM MyTable
on one of these tables, its results will also not display this "hidden" field (rowid).
But if you specifically include the field within the query such as:
SELECT rowid FROM MyTable
or
SELECT * FROM MyTable WHERE rowid = 10
the field (rowid) and its contents will appear as part of the query results.
Since the VFP View Designer does not "see" the field RowID, I cannot add it to its query string.
I will go to the Informix forum to see if I can learn more about the attributes of a "hidden" field. Maybe they just aren't supported through an ODBC connection, but, if so, that does would not explain the SQL query results within its "native" system.
Any suggestions on how to use VFP get a remote data query to work which will retrieve this "hidden" field?
Thanks,
I_Forgot
However there are a few tables which have a field (rowid) in it which is "hidden". While all the other fields show up, this "hidden" field will not appear within the Remote View designer.
Within the Linux box if you perform a "normal" SQL query such as:
SELECT * FROM MyTable
on one of these tables, its results will also not display this "hidden" field (rowid).
But if you specifically include the field within the query such as:
SELECT rowid FROM MyTable
or
SELECT * FROM MyTable WHERE rowid = 10
the field (rowid) and its contents will appear as part of the query results.
Since the VFP View Designer does not "see" the field RowID, I cannot add it to its query string.
I will go to the Informix forum to see if I can learn more about the attributes of a "hidden" field. Maybe they just aren't supported through an ODBC connection, but, if so, that does would not explain the SQL query results within its "native" system.
Any suggestions on how to use VFP get a remote data query to work which will retrieve this "hidden" field?
Thanks,
I_Forgot