Subject Re: [firebird-support] Varchar assigned to varchar -> "Conversion error from string"
Author Helen Borrie
At 03:34 AM 15/09/2009, you wrote:
>Following there are two versions of a simple SP (stripped down of a more
>complex real case):
>
>1)
>CREATE PROCEDURE SP_GENERAR_TRANSFERENCIA (
> OBSERVACIONES Varchar(2500)
>)
>AS
> insert into transferencias values(:observaciones);
>end

Have you tried
insert into transferencias values( (:observaciones) );

./heLen