Scroll to navigation

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

NAME

SQL::ReservedWords::SQLServer - Reserved SQL words by SQL Server

SYNOPSIS

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

DESCRIPTION

Determine if words are reserved by SQL Server.

METHODS

Returns a boolean indicating if $word is reserved by SQL Server 7, 2000 or 2005.
Returns a boolean indicating if $word is reserved by SQL Server 7.
Returns a boolean indicating if $word is reserved by SQL Server 2000.
Returns a boolean indicating if $word is reserved by SQL Server 2005.
Returns a list with SQL Server versions that reserves $word.
Returns a list with all reserved words.

EXPORTS

Nothing by default. Following subroutines can be exported:

SEE ALSO

http://msdn2.microsoft.com/en-us/library/ms130214.aspx

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