minor POD fixes
Rafael Kitover [Wed, 23 Dec 2009 06:16:29 +0000 (06:16 +0000)]
lib/DBIx/Class/Manual/Cookbook.pod
lib/DBIx/Class/Storage/DBI/ADO/Microsoft_SQL_Server.pm

index 089710a..7ae3630 100644 (file)
@@ -390,8 +390,13 @@ and defining often used searches as methods:
 
   1;
 
-To use your resultset, first tell DBIx::Class to create an instance of it
-for you, in your My::DBIC::Schema::CD class:
+If you're using L<DBIx::Class::Schema/load_namespaces>, simply place the file
+into the C<ResultSet> directory next to your C<Result> directory, and it will
+be automatically loaded.
+
+If however you are still using L<DBIx::Class::Schema/load_classes>, first tell
+DBIx::Class to create an instance of the ResultSet class for you, in your
+My::DBIC::Schema::CD class:
 
   # class definition as normal
   use base 'DBIx::Class::Core';
index e291656..90d7639 100644 (file)
@@ -121,7 +121,7 @@ for caveats regarding this.
 =head3 truncation bug
 
 There is a bug with MSSQL ADO providers where data gets truncated based on the
-size on the bind sizes in the first prepare:
+size of the bind sizes in the first prepare call:
 
 L<https://rt.cpan.org/Ticket/Display.html?id=52048>