NAME
SQL::ReservedWords::ODBC - Reserved SQL words by ODBC
SYNOPSIS
if ( SQL::ReservedWords::ODBC->is_reserved( $word ) ) {
print "$word is a reserved ODBC word!";
}
DESCRIPTION
Determine if words are reserved by ODBC.
METHODS
- is_reserved( $word )
-
Returns a boolean indicating if
$word
is reserved byODBC 3.0
. - words
-
Returns a list with all reserved words.
EXPORTS
Nothing by default. Following subroutines can be exported:
- is_reserved
- words
SEE ALSO
Microsoft ODBC 3.0 Programmer's Reference, Volume 2, Appendix C.
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.