Scroll to navigation

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

NAME

SQL::ReservedWords::Oracle - Reserved SQL words by Oracle

SYNOPSIS

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

DESCRIPTION

Determine if words are reserved by Oracle Database.

METHODS

Returns a boolean indicating if $word is reserved by either Oracle7, Oracle8i, Oracle9i or Oracle10g.
Returns a boolean indicating if $word is reserved by Oracle7.
Returns a boolean indicating if $word is reserved by Oracle8i.
Returns a boolean indicating if $word is reserved by Oracle9i.
Returns a boolean indicating if $word is reserved by Oracle10g.
Returns a list with Oracle 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.oracle.com/technology/documentation/>

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