It's possible, I believe to compile for wince (gotta love that so appropriate name) on a desktop and then move the executable to the PDA but I've never tried so I don't know how easy that is. If you are unable to do that (and I'd pursue that and the other suggestions in this thread first), there is a little goody in the DBI distribution that many people don't know about: DBI::PurePerl. I came up with the idea for that module for exactly your case: it provides many of the features of full DBI without the need to compile. Simply copy your DBI distro lib tree onto the PDA and in your scripts.pm set the environment variable DBI_PUREPERL to 1. With that setting DBI will try to load its compiled executable and if that fails it will load the pure perl version. The pure perl version is slower in some cases and missing some advanced features but has everything you need for standard CRUD operation. It worked for me on wince 3.0 and I've had reports of it working on Zaurus and other PDAs as well.

In reply to Re: Perl, Wince and DBI by jZed
in thread Perl, Wince and DBI by jason.drew

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.