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