Hi, for a utility program I am writing in Base 6.3.3.2 on Windows, I need to identify the names of all the tables in an odb file. I am using Firebird, and according to their site I can use the SQL query:
select rdb$relation_name
from rdb$relations
where rdb$view_blr is null
and (rdb$system_flag is null or rdb$system_flag = 0);
I tried it in LibreOffice Base, Tools, SQL and effectively it works.
When though I put this same request in the SQL content of a ComboBox, it always returns a Syntax error.
I guess that the problem is the use of $ in the field rdb$relation_name.
Any ideas how to get round this, or any other SQL-based suggestions to simply get the names of all tables?
Thanks.