Hello
i am using a THIBCQuery to sending a select on a database procedure which looks like this
select * from VT_VK_MELDUNG(null,'','', '','70948',200701,200703, null, null,null) order by VT_NUMMER ,KOSTENTRAEGER
And i get an error message : "EAssertionFailed:TableName cannot be empty (D:\Borland\IbDac for Delphi 2006\Source\IBCClasses.pas, Zeile 5682):"
if i modify the select like this:
select * from VT_VK_MELDUNG (null,'','', '','70948',200701,200703, null, null,null) order by VT_NUMMER ,KOSTENTRAEGER
it works a just add a blank between "VT_VK_MELDUNG (" procedure name and the starting breaked
Do you have any idea to this ?