My tables have some inner pre-fix that users must not know.
So I made a SP like this to retrieve lines.
CREATE PROCEDURE p_Test
( inStation varchar(10) )
RETURNS
( ServiceName varchar(20) )
AS
DECLARE VARIABLE StationTable varchar(20);
BEGIN
StationTable = 'TSTATION_' || Upper(Trim(inStation));
SELECT StationTable.ServiceName
FROM StationTable
INTO :ServiceName;
suspend;
END^
And I got a fail message like this
SQL error code = -204
Table unknown
STATIONTABLE
My fbclient.dll version is 2.1.2.18118.
My test enviroment is Flamerobin 0.9.2.1851.
Any idea to make this work?