Re: [sqlite] Function hex

2008-02-14 Thread Mau Liste
Ken wrote: > Try using the attached hex.c function. You'll need to compile this as a .so > and call sqlite3_create_function to register it. > > Hth Thanks Ken. This is exactly what I need. Regards to all. Mau. ___ sqlite-users mailing list

Re: [sqlite] Function hex

2008-02-14 Thread Mau Liste
n of the byte string '128' into the equivalent hex bytes. Thanks anyway ... Mau. [EMAIL PROTECTED] wrote: > Mau Liste <[EMAIL PROTECTED]> wrote: >> results in: SQL error: no such function: hex >> > > Added by version 3.3.13, one year ago yesterday. > >

[sqlite] Function hex

2008-02-14 Thread Mau Liste
Hello all, I am trying to print some table values in hexadecimal. I've seen in the docs that there is a function called 'hex' but the following: create table aa (a integer); insert into aa values(10); insert into aa values(11); insert into aa values(12); insert into aa values(13); insert into aa