}
1;
+
+=pod
+
+=head1 SYNOPSIS
+
+ package MyApp::Schema;
+
+ use parent 'DBIx::Class::Schema';
+
+ use DBIx::Class::Storage::PrettyPrinter;
+
+ __PACKAGE__->load_namespaces;
+
+ my $pp = DBIx::Class::Storage::PrettyPrinter->new({ profile => 'console' });
+
+ sub connection {
+ my $self = shift;
+
+ my $ret = $self->next::method(@_);
+
+ $self->storage->debugobj($pp);
+
+ $ret
+ }
+
# FROM foo
# WHERE foo.a > 2
+=head1 METHODS
+
+=head2 new
+
+ my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
+
+=head2 format
+
+ $sqlat->format('SELECT * FROM bar')
+
+Returns a formatting string based on wthe string passed in
]
},
'SQL::Abstract::Test' => { skip => 1 },
+ 'SQL::Abstract::Tree' => { skip => 1 },
+ 'DBIx::Class::Storage::PrettyPrinter' => { skip => 1 },
};
foreach my $module (@modules) {