DOKK / manpages / debian 12 / libdbix-class-helpers-perl / DBIx::Class::Helper::Schema::DidYouMean.3pm.en
DBIx::Class::Helper::Schema::DidYouMean(3pm) User Contributed Perl Documentation DBIx::Class::Helper::Schema::DidYouMean(3pm)

DBIx::Class::Helper::Schema::DidYouMean - Nice error messages when you misspell the name of a ResultSet

 package MyApp::Schema;
 __PACKAGE__->load_components('Helper::Schema::DidYouMean');

Elsewhere:

 $schema->resultset('Usre')->search(...)->...

And a nice exception gets thrown:

 The ResultSet "Usre" is not part of your schema.
 
 To help you debug this issue, here's a list of the actual sources that the
 schema knows about:
 
     Account
     Permission
     Role
   * User <-- Possible Match

This helper captures errors thrown when you use the "resultset" method on your schema and typo the source name. It tries to highlight the best guess as to which you meant to type.

Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

This software is copyright (c) 2020 by Arthur Axel "fREW" Schmidt.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2022-12-06 perl v5.36.0