Renamed Table to ResultSource::Table, tweaked FAQ
Matt S Trout [Fri, 20 Jan 2006 05:10:08 +0000 (05:10 +0000)]
lib/DBIx/Class/Manual/FAQ.pod
lib/DBIx/Class/TableInstance.pm

index 11fcf98..2ff5e61 100644 (file)
@@ -9,14 +9,15 @@ DBIx::Class::Manual::FAQ - Frequently asked questions
 This is an alternative to L<Class::DBI>, intended to provide greater
 functionality and simplicity.
 
-It is inspired by the L<Class::DBI> 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<DISTINCT>,
+It is inspired by the L<Class::DBI> 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<DISTINCT>,
 C<GROUP BY>s 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?
 
index 5a7603a..4858c30 100644 (file)
@@ -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