DB-Object

 view release on metacpan or  search on metacpan

lib/DB/Object/Constraint/Foreign.pm  view on Meta::CPAN


=head1 SYNOPSIS

    use DB::Object::Constraint::Foreign;
    my $foreign = DB::Object::Constraint::Foreign->new(
        expr => q{FOREIGN KEY (lang) REFERENCES language(lang) ON DELETE RESTRICT},
        fields => [qw( lang )],
        match => 'simple',
        on_delete => 'restrict',
        on_update => 'nothing',
        name => 'fk_user_info_lang',
        table => 'language',
    ) || die( DB::Object::Constraint::Foreign->error, "\n" );

=head1 VERSION

    v0.2.0

=head1 DESCRIPTION

This class represents a table foreign key constraint. It is instantiated by the L<structure|DB::Object::Tables/structure> method when retrieving the table structure details.

=head1 CONSTRUCTOR

=head2 new

To instantiate new object, you can pass an hash or hash reference of properties matching the method names available below.

=head1 METHODS

=head2 expr

Sets or gets the foreign key constraint expression.

It returns a L<scalar object|Module::Generic::Scalar>

=head2 fields

Sets or gets an array reference of table field names associated with this constraint.

It returns a L<array object|Module::Generic::Array>

=head2 match

Sets or gets the method a foreign key constraint matches.

For example: C<full>, C<partial> and C<simple>

It returns a L<scalar object|Module::Generic::Scalar>

=head2 name

Sets or gets the foreign key constraint name.

It returns a L<scalar object|Module::Generic::Scalar>

=head2 on_delete

Sets or gets the action taken by the database upon deletion of this foreign key.

For example: C<nothing>, C<restrict>, C<cascade>, C<null> or C<default>

It returns a L<scalar object|Module::Generic::Scalar>

=head2 on_update

Sets or gets the action taken by the database upon update of this foreign key.

For example: C<nothing>, C<restrict>, C<cascade>, C<null> or C<default>

It returns a L<scalar object|Module::Generic::Scalar>

=head2 table

Sets or gets the table name for this foreign key.

It returns a L<scalar object|Module::Generic::Scalar>

=head1 AUTHOR

Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>

=head1 SEE ALSO

L<https://www.postgresql.org/docs/current/tutorial-fk.html>

=head1 COPYRIGHT & LICENSE

Copyright(c) 2023 DEGUEST Pte. Ltd.

All rights reserved

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

=cut



( run in 0.909 second using v1.01-cache-2.11-cpan-e93a5daba3e )