From: Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 Date: Sun, 24 Mar 2013 11:23:24 +0000 (+0100) Subject: improve mark-up X-Git-Tag: v0.08210~14 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=53aa53f328f7d68280713f0a541dfcecbf2d2c27;p=dbsrgits%2FDBIx-Class.git improve mark-up --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index b532e04..760a2af 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -137,7 +137,7 @@ list below is sorted by "fastest response time": =head1 SYNOPSIS -Create a schema class called MyApp/Schema.pm: +Create a schema class called F: package MyApp::Schema; use base qw/DBIx::Class::Schema/; @@ -147,7 +147,7 @@ Create a schema class called MyApp/Schema.pm: 1; Create a result class to represent artists, who have many CDs, in -MyApp/Schema/Result/Artist.pm: +F: See L for docs on defining result classes. @@ -162,7 +162,7 @@ See L for docs on defining result classes. 1; A result class to represent a CD, which belongs to an artist, in -MyApp/Schema/Result/CD.pm: +F: package MyApp::Schema::Result::CD; use base qw/DBIx::Class::Core/; @@ -243,7 +243,8 @@ that allows abstract encapsulation of database operations. It aims to make representing queries in your code as perl-ish as possible while still providing access to as many of the capabilities of the database as possible, including retrieving related records from multiple tables in a single query, -JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY, ORDER BY and HAVING support. +C, C, C, C, C, C and +C support. DBIx::Class can handle multi-column primary and foreign keys, complex queries and database-level paging, and does its best to only query the @@ -256,8 +257,8 @@ and thread-safe out of the box (although L). This project is still under rapid development, so large new features may be -marked EXPERIMENTAL - such APIs are still usable but may have edge bugs. -Failing test cases are *always* welcome and point releases are put out rapidly +marked B - such APIs are still usable but may have edge bugs. +Failing test cases are I welcome and point releases are put out rapidly as bugs are found and fixed. We do our best to maintain full backwards compatibility for published