DB-Object
view release on metacpan or search on metacpan
lib/DB/Object/Constraint/Check.pm view on Meta::CPAN
=encoding utf-8
=head1 NAME
DB::Object::Constraint::Check - Table Check Constraint Class
=head1 SYNOPSIS
use DB::Object::Constraint::Check;
my $check = DB::Object::Constraint::Check->new(
expr => q{CHECK (status::text ~* '^(active|inactive|locked|pending|protected|removed|suspended)$'::text)},
fields => [qw( status )],
name => 'chk_users_status',
) || die( DB::Object::Constraint::Check->error, "\n" );
=head1 VERSION
v0.1.0
=head1 DESCRIPTION
lib/DB/Object/Mysql/Tables.pm view on Meta::CPAN
A column name to column data type hash reference
=back
=head2 table_info
This is an alias for L<DB::Object::Mysql/table_info>
=head2 unlock
This will unlock a previously locked table.
If an argument is provided, this calls instead C<CORE::unlock> passing it whatever parameters provided.
Otherwise, it will prepare a query C<UNLOCK TABLES> and returns the statement handler.
If it is called in void context, this will execute the statement handler immediately.
See L<MyQL documentation for more information|https://dev.mysql.com/doc/refman/5.7/en/lock-tables.html>
=head1 SEE ALSO
lib/DB/Object/Postgres/Tables.pm view on Meta::CPAN
A column name to column data type hash reference
=back
=head2 table_info
This is an alias for L<DB::Object::Postgres/table_info>
=head2 unlock
This will unlock a previously locked table.
If an argument is provided, this calls instead C<CORE::unlock> passing it whatever parameters provided.
Otherwise, it will prepare a query C<UNLOCK TABLES> and returns the statement handler.
If it is called in void context, this will execute the statement handler immediately.
=head1 SEE ALSO
L<perl>
( run in 0.551 second using v1.01-cache-2.11-cpan-49f99fa48dc )