using LO Base with a local HSQL database file.
What I want to do: copy and paste my existing (and in some cases very long) queries, which are of the form:
SELECT table1.field1, table2.field2 FROM table1, table2 WHERE table1.id=table2.id
what I am having to do:
SELECT "table1"."field1", "table2"."field2" FROM "table1", "table2" WHERE "table1"."id"="table2"."id"
I note then when I use LO Base to connect to a remote MySQL database and run the queries, it works fine without the quote marks, but fails when data source is local HSQL database. Is there any way around this? I do not want to have to edit a whole load of complicated queries... any help appreciated