Recent Posts
None | 14 sec ago
JavaScript | 20 sec ago
None | 21 sec ago
None | 25 sec ago
PHP | 31 sec ago
None | 32 sec ago
PHP | 59 sec ago
None | 1 min ago
Pixel Bender | 1 min ago
C# | 1 min ago
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 10th of Feb 2010 12:24:01 AM
Download |
Raw |
Embed |
Report
#!perl
#$ENV{DBIC_TRACE} = 1;
use strict;
use warnings;
use feature ':5.10';
use FindBin;
use lib "$FindBin::Bin/../lib";
use ACD::Schema;
use Config::JFDI;
use Devel::REPL;
my $config = Config::JFDI->new(name => 'acd', path => "$FindBin::Bin/../acd");
my $config_hash = $config->get;
my $connect_info = $config_hash->{Model}{DB}{connect_info};
my $schema = ACD::Schema->connect($connect_info);
$schema->storage->ensure_connected;
my $repl = Devel::REPL->new;
$repl->load_plugin($_) for qw(OutputCache MultiLine
::PPI Colors Timing History LexEnv
);
$repl->run
Submit a correction or amendment below.
Make A New Post