debian man page for sql::reservedwords::mysql

Query: sql::reservedwords::mysql

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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

NAME
SQL::ReservedWords::MySQL - Reserved SQL words by MySQL
SYNOPSIS
if ( SQL::ReservedWords::MySQL->is_reserved( $word ) ) { print "$word is a reserved MySQL word!"; }
DESCRIPTION
Determine if words are reserved by MySQL.
METHODS
is_reserved( $word ) Returns a boolean indicating if $word is reserved by either MySQL 3.2, 4.0, 4.1, 5.0 or 5.1. is_reserved_by_mysql3( $word ) Returns a boolean indicating if $word is reserved by MySQL 3.2. is_reserved_by_mysql4( $word ) Returns a boolean indicating if $word is reserved by either MySQL 4.0 or 4.1. is_reserved_by_mysql5( $word ) Returns a boolean indicating if $word is reserved by either MySQL 5.0 or 5.1. reserved_by( $word ) Returns a list with MySQL versions that reserves $word. words Returns a list with all reserved words.
EXPORTS
Nothing by default. Following subroutines can be exported: is_reserved is_reserved_by_mysql3 is_reserved_by_mysql4 is_reserved_by_mysql5 reserved_by words
SEE ALSO
SQL::ReservedWords <http://dev.mysql.com/doc/>
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. perl v5.8.8 2008-03-28 SQL::ReservedWords::MySQL(3pm)
Related Man Pages
mysql::diff::database(3pm) - debian
sql::reservedwords(3pm) - debian
sql::reservedwords::db2(3pm) - debian
sql::reservedwords::mysql(3pm) - debian
sql::translator::producer::mysql(3pm) - debian
Similar Topics in the Unix Linux Community
to insert some word somewhere in the line with shell (or perl)
How to print line starts with specific word and contains specific word using sed?
Fetch entries in front of specific word till next word
Taking word count from file and printing in file
awk script to parse SQL from Pro*C program