If there's some sort of state information or some costly-to-compute digest that someone wants to preserve across different runs of their user-supplied perl code, and you're looking for a place to store that, well... Where is this user-supplied perl code really coming from? And assuming that it outputs something to the user who supplied it, where does that output go? Is it all keyboard/screen i/o at a console, or is there a network interface of some sort? Don't the users have some place to store and fetch their perl code, or do they have to type it in from scratch every time they use this facility?

If users are able to store their perl code somewhere, and have the ability to store the output from their code in the same place, then they'll want to structure their usage so that the output they want to keep/re-use can be attached as __DATA__ to the next bit of perl code they submit.

That's a lot of if's and assumptions and questions -- your post was awfully vague.


In reply to Re: Databases with in databases by graff
in thread Databases with in databases by BUU

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.