id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
399,Stand-alone executabel of Padre for Linux,szabgab,Alias,"ORLite::Migrate::Patch was missing from the PAR generated executable but now it is added.
Still when ORLite::Migrate is running the migration scripts it does so via IPC::Run3 which uses the system perl and not the perl that comes with padre. That might not work as they might not be binary compatible.

One thing I tried was to add the lib directory that comes with padre.exe with the following naive code in Padre::DB

{{{
BEGIN {
	if ($ENV{PAR_TEMP}) {
	 	$ENV{PERL5LIB} .= "":$ENV{PAR_TEMP}/inc/lib"";
	}
}
}}}

That gave me 
{{{
install_driver(SQLite) failed: DBD::SQLite object version 1.14 does not match bootstrap parameter 1.23 at DynaLoader.pm line 219, <STDIN> line 1.
}}}

probably if I add it as the first thing to PERL5LIB that would work on my computer but not on other computers with other version of perl.
",defect,assigned,major,,downstream,0.36,,,
