Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: j thomasOoo, interesting, I tried a few different queries to try to exclude weird datatypes.
The 'counters' table has only 2 columns, both text:
select * from counters;
and
select counter from counters;
returned the same error but
select 1 from counters;
and
select ''+counter from counters;
returned successful results.
Selecting a 'date' type column works but columns MS Access interprets as 'text' and 'memo' seem to need forcing to a string for LAE to handle them.
Any ideas what I can do about this other than explicitly selecting and casting every text column?