computed_column_x
What does it mean when i get back computed_column_1, computed_column_2 etc instead of actual column names in a query? im not doing anything fancy in the SQL
in this case, this is using a custom odbc driver called ezRets that is designed to comunicate with a RETS server and translate it back to a psudo database query so im
sure it's doing a lot of stuff behind the scenes. Is there anything i can do about this? My work around is doing of a query of query with select computed_column_x as "actual column name"
which works cause the number of x is the same as the order i selected the actual column names in the original query. I can't do the AS in the original query since it's not supported
by the ezRets ODBC driver.
I guess it's not a huge deal in this case to do the query of query workaround but i was wondering if anybody had an insight on the computed_column thing.
