I am trying to use DBI (DBD::SQLite) inside a Safe compartment, but I can't figure out a way to do it. My initial approach was to create a connection in the main program, then write a function to call do() etc. on that connection, and finally to share() the function into the safe compartment. Doesn't work:
$dbh = DBI->connect(...);
sub foo {
$dbh->do(...);
}
$compartment = new Safe;
$compartment->share('&foo');
$compartment->reval('&foo();');
produces
Had to create DBI::_dbistate unexpectedly at ./mrmonitor.pl line 232.
and the program freezes.
So I tried creating a new connection inside the compartment:
sub foo {
my $dbh = DBI->connect(...);
$dbh->do(...);
$dbh->disconnect();
}
and I get
Can't locate object method "connect" via package "DBI" (perhaps you forgot to load "DBI"?) at ./mrmonitor.pl line 228.
I could add "DBI::connect" (and a bunch of other DBI/DBD methods) to the compartment -- but that would defeat the entire purpose of a Safe compartment, because it would let user code access databases however it feels like.
Is there a solution to this problem, or should I just not use Safe in this case?
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.