Single quotes return a syntax error for me.
I'm working on a Pervasive-specific ODBC driver for a web framework and the function that builds the results table must know the name of the PSQL table that the result is coming form. However, the way the base class is designed, there is no way to know the name of the table without using a function that extracts the table association from the result (which the ODBC libray does not have). I also can't read the table name from the query itself because the function has no knowledge of the original SQL statement.
It's a really limited system, I know. But, unfortunately, it's all I have to work with. By including the table name in the results, I can simply read it out like any other data in the result set.
EDIT: Ok, single quotes seem to work as long as the select statement doesn't use an asterisk. I still need the table name in that case, though.