projects
/
dbsrgits/SQL-Translator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f0fc3ac
)
Need to call "load" as a class method rather than an object method.
Ken Youens-Clark [Fri, 7 Aug 2009 20:48:46 +0000 (20:48 +0000)]
lib/SQL/Translator/Parser/DBI.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Translator/Parser/DBI.pm
b/lib/SQL/Translator/Parser/DBI.pm
index
521b0d2
..
1d0219d
100644
(file)
--- a/
lib/SQL/Translator/Parser/DBI.pm
+++ b/
lib/SQL/Translator/Parser/DBI.pm
@@
-170,7
+170,7
@@
sub parse {
my $pkg = "SQL::Translator::Parser::DBI::$driver";
my $sub = $pkg.'::parse';
- $tr->load( $pkg );
+ SQL::Translator::load( $pkg );
eval {
no strict 'refs';