From: Matt S Trout Date: Fri, 20 Jan 2006 05:10:08 +0000 (+0000) Subject: Renamed Table to ResultSource::Table, tweaked FAQ X-Git-Tag: v0.05005~117^2~33 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=25bb283db671104b46fcaa76813b743311feccdc;p=dbsrgits%2FDBIx-Class.git Renamed Table to ResultSource::Table, tweaked FAQ --- diff --git a/lib/DBIx/Class/Manual/FAQ.pod b/lib/DBIx/Class/Manual/FAQ.pod index 11fcf98..2ff5e61 100644 --- a/lib/DBIx/Class/Manual/FAQ.pod +++ b/lib/DBIx/Class/Manual/FAQ.pod @@ -9,14 +9,15 @@ DBIx::Class::Manual::FAQ - Frequently asked questions This is an alternative to L, intended to provide greater functionality and simplicity. -It is inspired by the L framework, and meant to support -compability with it, while restructuring the internals and making it -possible to support some new features like self-joins, C, +It is inspired by the L framework, and provides a compat +layer to ease porting, but with a resultset-oriented, MI-based +design that makes extension easier and allows us to support more +complex relational operations like self-joins, C, Cs and more. =head2 What databases does it support? -At least MSSQL, MySQL, Oracle, PostgreSQL and SQLite. +At least MSSQL, MySQL, Oracle, PostgreSQL, SQLite and DB2. =head2 What's the current status of this module? diff --git a/lib/DBIx/Class/TableInstance.pm b/lib/DBIx/Class/TableInstance.pm index 5a7603a..4858c30 100644 --- a/lib/DBIx/Class/TableInstance.pm +++ b/lib/DBIx/Class/TableInstance.pm @@ -4,11 +4,11 @@ use strict; use warnings; use base qw/DBIx::Class::ResultSourceInstance/; -use DBIx::Class::Table; +use DBIx::Class::ResultSource::Table; __PACKAGE__->mk_classdata('table_alias'); # FIXME: Doesn't actually do anything yet! -__PACKAGE__->mk_classdata('table_class' => 'DBIx::Class::Table'); +__PACKAGE__->mk_classdata('table_class' => 'DBIx::Class::ResultSource::Table'); =head1 NAME