[Yapcom-commit] rev 430 - in yapcom/trunk: . lib/YAPC
svn at pti.co.il
svn at pti.co.il
Tue Oct 31 00:51:12 IST 2006
Author: gabor
Date: 2006-10-30 17:51:05 -0500 (Mon, 30 Oct 2006)
New Revision: 430
Modified:
yapcom/trunk/
yapcom/trunk/Build.PL
yapcom/trunk/lib/YAPC/DBI.pm
Log:
slight fix
Property changes on: yapcom/trunk
___________________________________________________________________
Name: svk:merge
- 8c4c90e1-83eb-0310-96eb-e7cb62807872:/local/yapcom:11387
+ 8c4c90e1-83eb-0310-96eb-e7cb62807872:/local/yapcom:11554
Modified: yapcom/trunk/Build.PL
===================================================================
--- yapcom/trunk/Build.PL 2006-09-29 10:00:20 UTC (rev 429)
+++ yapcom/trunk/Build.PL 2006-10-30 22:51:05 UTC (rev 430)
@@ -2,6 +2,10 @@
use warnings;
use Module::Build;
+use DBD::SQLite;
+if ($DBD::SQLite::VERSION eq '1.13') {
+ die "Version 1.13 of DBD::SQLite is broken!. Use 1.12\n";
+}
my $builder = Module::Build->new(
module_name => 'Yapcom', # YAPC::Organizer ?
license => 'perl',
Modified: yapcom/trunk/lib/YAPC/DBI.pm
===================================================================
--- yapcom/trunk/lib/YAPC/DBI.pm 2006-09-29 10:00:20 UTC (rev 429)
+++ yapcom/trunk/lib/YAPC/DBI.pm 2006-10-30 22:51:05 UTC (rev 430)
@@ -9,6 +9,7 @@
my $db_file = YAPC::Tools->get_db_file;
__PACKAGE__->connection("dbi:SQLite:$db_file", '', '');
+#__PACKAGE__->set_db('Main', "dbi:SQLite:$db_file", '', '');
=head2 init_db
More information about the Yapcom-commit
mailing list