From: Jess Robinson Date: Wed, 12 Apr 2006 15:25:50 +0000 (+0000) Subject: Fix SQLT example (one of them anyway) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d240abacd76d77699d1bb2e90151f8ae587c13f7;p=dbsrgits%2FDBIx-Class-Historic.git Fix SQLT example (one of them anyway) --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index ed00d46..35b7d40 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -562,8 +562,8 @@ instead: }, ); - $translator->parser('DBIx::Class'); - $translator->producer('DBIx::Class::File'); + $translator->parser('SQL::Translator::Parser::DBIx::Class'); + $translator->producer('SQL::Translator::Producer::DBIx::Class::File'); my $output = $translator->translate(@args) or die "Error: " . $translator->error;