Scroll to navigation

SQL::ReservedWords::DB2(3pm) User Contributed Perl Documentation SQL::ReservedWords::DB2(3pm)

NAME

SQL::ReservedWords::DB2 - Reserved SQL words by DB2

SYNOPSIS

   if ( SQL::ReservedWords::DB2->is_reserved( $word ) ) {
       print "$word is a reserved DB2 word!";
   }

DESCRIPTION

Determine if words are reserved by DB2.

METHODS

Returns a boolean indicating if $word is reserved by either DB2 5, 6, 7 or 8.
Returns a boolean indicating if $word is reserved by DB2 5.
Returns a boolean indicating if $word is reserved by DB2 6.
Returns a boolean indicating if $word is reserved by DB2 7.
Returns a boolean indicating if $word is reserved by DB2 8.
Returns a boolean indicating if $word is reserved by DB2 9.
Returns a list with DB2 versions that reserves $word.
Returns a list with all reserved words.

EXPORTS

Nothing by default. Following subroutines can be exported:

SEE ALSO

SQL::ReservedWords

<http://www-306.ibm.com/software/data/db2/udb/>

AUTHOR

Christian Hansen "chansen@cpan.org"

COPYRIGHT

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

2022-06-17 perl v5.34.0