Re: [firebird-support] SP space chacarter problem in FB2.5

2018-10-24 Thread Germán Balbi bal...@yahoo.com [firebird-support]
Then the new SP remains: create or alter procedure VER_EDAD (     N_EDAD numeric(15,4),     SEPARADOR varchar(1),     CORTO char(1)) returns (     C_EDAD varchar(8)) as begin   /* Procedure Text */   if (separador is null) then     separador = ' ';   if (corto is null) then     corto = 'N'; 

Re: [firebird-support] SP space chacarter problem in FB2.5

2018-10-23 Thread Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
On 23-10-2018 17:31, Germán Balbi bal...@yahoo.com [firebird-support] wrote: > in the netx SP send the follow parameters > 5,' ','N' --->>>5 Años (perfect) > 5,'','N' --->>>5 Años ( not 5Años) without space of separation >:( > > create or alter procedure VER_EDAD ( >     N_EDAD numeric(15,4), >

Re: [firebird-support] SP space chacarter problem in FB2.5

2018-10-23 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
23.10.2018 17:31, Germán Balbi bal...@yahoo.com [firebird-support] wrote: > in the netx SP send the follow parameters Read Firebird Language Reference to find out the difference between CHAR and VARCHAR data types. -- WBR, SD.

[firebird-support] SP space chacarter problem in FB2.5

2018-10-23 Thread Germán Balbi bal...@yahoo.com [firebird-support]
Hi.in the netx SP send the follow parameters5,' ','N' --->>>5 Años (perfect) 5,'','N' --->>>5 Años ( not 5Años) without space of separation create or alter procedure VER_EDAD (     N_EDAD numeric(15,4),     SEPARADOR char(1),     CORTO char(1)) returns (     C_EDAD varchar() as begin   /*