Subject Re: Greetings, and, Fire!
Author alex_vnru
--- In ib-support@y..., "Edson T. Marques" <marques@o...> wrote:
> It works fine once, but by now,(I suspect, and all clues indicates
that)
> whit Firebird 1.0, it stop to work.
> I only want to know if this suspects is true.

Edson, I should assure you that it works on LI-V6.2.796 Firebird
1.0. I just tested

Create procedure TestIn(ParStr VarChar(30))
Returns (Name Char(30))
As
Begin
For select Name from Classes
where :ParStr LIKE '%,' || ID ||',%'
Into :Name
Do Suspend;
End

Select * from testin(',1,4,8,14,')

and got expected result. Search reason in application or intermediate
software or data itself.

Best reagrds.