Delphi: Paradox DB Field Name Issue (Spaces in field name)

后端 未结 4 617
悲哀的现实
悲哀的现实 2020-12-20 18:44

I have a paradox table from a legacy system I need to run a single query on. The field names have spaces in them - i.e. \"Street 1\". When I try and formulate a query in d

4条回答
  •  不知归路
    2020-12-20 19:14

    I only need the street information from the address details held in the customer table. I can get it to work fine if I do a SELECT * FROM customers, however this is a very large table and returns numerous results. If I do SELECT "Street 1" FROM customers, the output is "Street 1" in every record returned - i.e. it does not return the actual data. It must be something to do with the use of "

    Thanks for your help

    Joe

提交回复
热议问题