NAME

CatalystX::CRUD::Object::DBIC - DBIx::Class implementation of CatalystX::CRUD::Object **DEPRECATED**

SYNOPSIS

# fetch a row from MyApp::Model::Foo (which isa CatalystX::CRUD::Model)
my $foo = $c->model('Foo')->fetch( id => 1234 );
$foo->create;
$foo->read;
$foo->update;
$foo->delete;

DESCRIPTION

** THIS PACKAGE IS DEPRECATED. See Catalystx::CRUD::ModelAdapter::DBIC instead. **

CatalystX::CRUD::Object::DBIC implements the required CRUD methods of a CatalystX::CRUD::Object subclass. It is intended for use with CatalystX::CRUD::Model::DBIC.

METHODS

Only new or overridden methods are documented here.

create

Calls delegate->insert().

read

Calls delegate->find(@_).

update

Calls delegate->update().

delete

Calls delegate->delete(@_).

AUTHOR

Peter Karman, <karman at cpan.org>

BUGS

Please report any bugs or feature requests to bug-catalystx-crud-model-dbic at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CatalystX-CRUD-Model-DBIC. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc CatalystX::CRUD::Model::DBIC

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2007 Peter Karman, all rights reserved.

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