NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Different SQLite versions? (Score:2)
I don't know what version of SQLite PHP 5 is using, but checking for Perl is quite easy, according to the changes file [cpan.org], DBD::SQLite started using SQLite 3 starting with DBD::SQLite version 1.00. So, whatever version it is you have, try installing the latest one of the other generation.
I wish Perl had a better way to have different generations of modules live together, but I think the best you can do in order not to
Re:Different SQLite versions? (Score:1)
And thus the reason for DBD::SQLite2 [cpan.org]. From the README for DBD::SQLite2,
Re:Different SQLite versions? (Score:1)
-adam
Reply to This
Parent
Re:Different SQLite versions? (Score:2)
while this is neither a php nor perl concern, I was able to put my finger on why this all felt so strange to me this week at nyphp: if versions 2 and 3 databases are not compatible, I would expect that a version 2 client would bomb, however I would expect a version 3 client to say "whoa - you're using a version 2 database." the way it is now, you get this cryptic "file is encrypted" error in both directions, which is very user unfriendly.