I'm using FastReport 3.21 + frxMyDAC components.
One of my frxMyDAC SQL statement looks like this one :
Before displaying the report, i'm setting the parameter to the corresponding record.Drop TEMPORARY Table If Exists tmpTable;
Create TEMPORARY Table If Not Exists tmpTable
Select * from Emp where EMPNO = :prempno;
Select * from tmpTable;
If the report is stored on the DFM , On first report preview, I'm getting an fastreport error. If I do another preview I'm getting an ReceiveCompHeader error.
After closing my report all MyQuery are throwing me ReceiveCompHeader error. I'm then no more able to browse any gird / close my connection...
It looks like the frxMyDAC components is messing something. I badly need to use tmp table for this particular report.
Thank you