The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Fey::Object::Schema - Base class for schema-based objects

VERSION

version 0.46

SYNOPSIS

  package MyApp::Schema;

  use Fey::ORM::Schema;

  has_schema(...);

DESCRIPTION

This class is a the base class for all schema-based objects.

METHODS

This class provides the following methods:

$class->EnableObjectCaches()

Enables the object class for all of the table classes associated with this class's schema.

$class->DisableObjectCaches()

Disables the object class for all of the table classes associated with this class's schema.

$class->ClearObjectCaches()

Clears the object class for all of the table classes associated with this class's schema.

$class->RunInTransaction( $coderef, $source )

Given a code ref, this method will begin a transaction and execute the coderef. If the coderef runs normally (no exceptions), it commits, otherwise it rolls back and rethrows the error.

This method will handle nested transactions gracefully if your DBMS does not. It doesn't emulate actual partial commits, but it does prevent DBI from throwing an error.

The second argument can be a Fey::DBIManager::Source object. If no source is specified, then this method will use the default source.

$class->Schema()

Returns the Fey::Schema object associated with the class.

$class->DBIManager()

Returns the Fey::Schema object associated with the class.

$class->SetDBIManager($manager)

Set the Fey::DBIManager object associated with the class. If you don't set one explicitly, then the first call to $class->DBIManager() will simply create one by calling Fey::DBIManager->new().

$class->SQLFactoryClass()

Returns the SQL factory class associated with the class. This defaults to Fey::SQL.

$class->SetSQLFactoryClass()

Set the SQL factory class associated with the class.

AUTHOR

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Dave Rolsky.

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