[firebird-support] ASCII values

2018-03-08 Thread hugo.lar...@yahoo.com [firebird-support]
Hello, I have a column char(2) where two ASCII values stored. For example 0011, 0001 are stored as (3,1). When I do a select I dont get any result because the result is not alphanumeric. 3 is ETX and 1 is NUL. I can get the values programmatically but I want to do bit comparison with

RE: [firebird-support] ASCII values

2018-03-08 Thread Omacht András aoma...@mve.hu [firebird-support]
@yahoogroups.com [mailto:firebird-supp...@yahoogroups..com] Sent: Friday, March 9, 2018 6:33 AM To: firebird-support@yahoogroups.com Subject: [firebird-support] ASCII values Hello, I have a column char(2) where two ASCII values stored. For example 0011, 0001 are stored as (3,1). When I do a

RE: [firebird-support] ASCII values

2018-03-09 Thread hugo.lar...@yahoo.com [firebird-support]
Many thanks András! //ugo

Re: [firebird-support] ASCII values

2018-03-09 Thread Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
On 2018-03-09 06:33, hugo.lar...@yahoo.com [firebird-support] wrote: > I have a column char(2) where two ASCII values stored. For example > 0011, 0001 are stored as (3,1). > When I do a select I dont get any result because the result is not > alphanumeric. 3 is ETX and 1 is NUL. > I can get

Re: [firebird-support] ASCII values

2018-03-10 Thread hugo.lar...@yahoo.com [firebird-support]
Thanks Mark.