I have a query to list all the delivery addresses for a selected client, in short
Code: Select all
SELECT ACCOUNT_REF, DESCRIPTION, NAME, ADDRESS_1,ADDRESS_2, ADDRESS_3, ADDRESS_4, ADDRESS_5, TELEPHONE, FAX, E_MAIL
FROM SALES_DEL_ADDR
WHERE (ACCOUNT_REF = 'xxx')
Is there any way to force the ODBC driver to see this as just another string instead of a keyword ?
(I've tried apostrophes, inverted commas etc, and using LIKE instead of = )
Cheers,
Steve.