Re: [sqlite] xor

2004-05-04 Thread Kurt Welgehausen
According to 'normal' precedence, the BitOr on line 14 of your trace should be at the end, but '&' and '|' seem to have equal precedence in SQLite (never had noticed that before). This is apparently intentional; see . Change your expression from (~(a&b)) & (a

Re: [sqlite] xor

2004-05-04 Thread Michal Guerquin
On 2004-05-02 at 23:07 PDT, Michal Guerquin wrote: >I can implement my own, or use a sequence of existing >bitwise operations like (~(a&b))&(a|b), but neither >option sounds as efficient a native opcode in the >virtual machine. Well, I'm back! :) After several hours of bug hunting, I think I may

Re: [sqlite] release 14

2004-05-04 Thread D. Richard Hipp
aducom wrote: Hi, Is it possible to do a release 14 of the sqlite.dll with the support of real blobs? (It's available in cvs?) Or will I have to wait for the full new version? I don't know what you mean by "support for real blobs". You'll need to be much more specific. Generally speaking, no n

[sqlite] release 14

2004-05-04 Thread aducom
Hi, Is it possible to do a release 14 of the sqlite.dll with the support of real blobs? (It's available in cvs?) Or will I have to wait for the full new version? Albert - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona