Re: [firebird-support] Get records based on the third portion of a version string

2015-05-10 Thread Venus Software Operations venussof...@gmail.com [firebird-support]

Re: [firebird-support] "Open Database xxxxx failed" Creating Odbc DSN for Firebird 1.5

2015-05-10 Thread marcus mar...@antiphasis.net [firebird-support]
Hej, On 09.05.2015 23:11, vrynjo...@yahoo.com [firebird-support] wrote: > > > Trying to create an odbc DSN for a .gdb database on firebird > 1.5.6.5026-0 32bit. the os is windows 7 32 bit and the odbc driver is > Firebird odbc 2.0.0.151 32bit. Database connection is successful in > iBExpert but

Re: [firebird-support] Get records based on the third portion of a version string

2015-05-10 Thread LtColRDSChauhan rdsc1...@gmail.com [firebird-support]
Please check this : SET TERM ^ ; ALTER PROCEDURE SP_VERSION_NOS ( PORTION smallint, SEPARATOR char(1), VERSION_UPTO varchar(80) ) RETURNS ( VERSION_NO varchar(80) ) AS declare variable i smallint; declare variable SEPARATOR_POS Integer; declare variable VERSION_UPTO_PORTION_INT int

Re: [firebird-support] Get records based on the third portion of a version string

2015-05-10 Thread Venus Software Operations venussof...@gmail.com [firebird-support]

Re: [firebird-support] Get records based on the third portion of a version string

2015-05-10 Thread LtColRDSChauhan rdsc1...@gmail.com [firebird-support]
Please try : SET TERM !! ; alter PROCEDURE SP_VERSION_NOS( PORTION smallint, SEPARATOR char, EARLIER_TO integer) RETURNS ( VERSION_NO varchar(80) ) AS declare variable i smallint; declare variable SEPARATOR_POS Integer; declare variable VERSION_PORTION varchar(80); declare variable