Wonderful!
First, I'm not sure if your IPK is broken, or my Zaurus is messed up, but after I installed your package I had to do this before sqlite3 could find the library:
mv /usr/local/lib/libsqlite3.* /usr/lib/
rm /usr/lib/libsqlite3.so
rm /usr/lib/libsqlite3.so.0
ln -s /usr/lib/libsqlite3.so.0.8.6 /usr/lib/libsqlite3.so
ln -s /usr/lib/libsqlite3.so.0.8.6 /usr/lib/libsqlite3.so.0
Not the most efficient way to do it, but you see what the point is, my Z doens't look in /usr/local/lib/ for anything. Is this normal, or do I need to fix something in my OS? I noticed there are not any other files (just some directories) in /usr/local/lib/ on my machine.
Aside from that it works great! I have several python apps that use sqlite databases on my Z. I am now converting all of my sqlite databases to the much smaller (and hoepfully faster) sqlite 3 format!
Thanks, and keep up the good work!