Rob Shortt wrote:
> BTW I'm still using sqlite 1.

Strange result['foo'] should be identical to result.foo in
sqlite1. Looking at my code, you just broke sqlite2 support. :(

I guess I could change the code so that result['foo'] also works with
sqlite2. But this will slow down things. Sqlite2 is much faster
because it only returns the result as list. So you can only access
result[0], result[1], etc. This is fast, but not very nice to
read. Creating an object to support result[key] and result.key will
slow things down (like sqlite1). 

I will try to fix it. The _best_ way to only use result[int].


Dischi

-- 
Important documents will demonstrate their vitality by moving from
where you left them to where you can't find them.

Attachment: pgpsurrUasTdA.pgp
Description: PGP signature

Reply via email to