Re[2]: [sqlite] Back to sqlite_decode_binary()

2003-11-27 Thread Doug Currie
Thursday, November 27, 2003, 10:19:22 PM, Dennis Volodomanov wrote: >> and sqlite_decode_binary() wants an unsigned char. Can you help me >> and tell me what to do in order to supply sqlite_decode_binary() >> with the data it wants in a correct fashion? > Well, I did just cast it to an unsigned

RE: [sqlite] Field name

2003-11-27 Thread Greg Obleshchuk
Hi, Des that mater? If it does then just un=quote them by removing the first char and lasts Kind regards Greg O -Original Message- From: Bronislav Klucka [mailto:[EMAIL PROTECTED] Sent: Thursday, 27 November 2003 8:42 PM To: SqLite Konference; Greg Obleshchuk Subject: RE: [sqlite]

RE: [sqlite] Field name

2003-11-27 Thread Bronislav Klucka
but the results column name seems to be [brona'-kluc"ka] instead of brona'-kluc"ka > -Original Message- > From: Greg Obleshchuk [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 27, 2003 10:32 AM > To: 'Bronislav Kluèka' > Subject: RE: [sqlite] Field name > > > Hi , > I prefer to

[sqlite] Field name

2003-11-27 Thread Bronislav Klučka
Hi, I've done this: create table 'brona''-klucka' ('brona''-kluc"ka' int) insert into 'brona''-klucka' ('brona''-kluc"ka') values (1); if I try: select * from 'brona''-klucka'; then it realy returns >1<, but how can I address the field? select "brona''-kluc"ka" from 'brona''-klucka';