SQLexplorer Important Bug
Posted: Thu Jul 05, 2012 9:21 am
Just decided to give the SQLE file a whirl for my lack of ability to generate FMQL.
There is DEFINITELY a bug when accessing tables with field names with spaces.
Here's the botched, generated code:
SELECT a."SKU", a."Account Number"
FROM "InvTRANSACTIONS" a
WHERE n."Acc" = ?
And here's what it should be:
SELECT a."SKU", a."Account Number"
FROM "InvTRANSACTIONS" a
WHERE a."Account Number" = ?
HTH you guys with what seems to be an otherwise great file!
Cheers,
Denis
There is DEFINITELY a bug when accessing tables with field names with spaces.
Here's the botched, generated code:
SELECT a."SKU", a."Account Number"
FROM "InvTRANSACTIONS" a
WHERE n."Acc" = ?
And here's what it should be:
SELECT a."SKU", a."Account Number"
FROM "InvTRANSACTIONS" a
WHERE a."Account Number" = ?
HTH you guys with what seems to be an otherwise great file!
Cheers,
Denis