in reply to Re^3: Perl has plenty of XML parsers, but is there an XML printer?
in thread Perl has plenty of XML parsers, but is there an XML printer?

I completely forgot about SQLite, and it's in my work's Perl dist!

Nevermind XML, I'm going to use that :)..

  • Comment on Re^4: Perl has plenty of XML parsers, but is there an XML printer?

Replies are listed 'Best First'.
Re^5: Perl has plenty of XML parsers, but is there an XML printer?
by jZed (Prior) on Jul 20, 2007 at 00:22 UTC
    perl -MDBD::SQLite -e "print $DBD::SQLite::VERSION" will tell you if it's installed (note: DBD::, not DBI::). It's also dead simple to install if not there. You might want to check into DBD::AnyData regardless, since it makes it easy to get XML into and out of SQLite.

      I wish I could work with DBD::AnyData, but it's not installed in the local Perl dist.

      I don't have root access to the machine, and my dev group wants to avoid supporting as many things cross-site as possible (so local CPAN installs are out of the question).