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

is_reserved( $word )

Returns a boolean indicating if $word is reserved by SQL Server 2000.

words

Returns a list with all reserved words.

EXPORTS

Nothing by default. Following subroutines can be exported:

is_reserved
words

SEE ALSO

http://msdn.microsoft.com/library/en-us/dnanchor/html/sqlserver.asp

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.