Unix and Linux Discussions Tagged with word |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,283 |
Shell Programming and Scripting |
|
|
|
1 |
2,586 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,715 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
2,719 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,665 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,146 |
Shell Programming and Scripting |
|
|
|
2 |
3,178 |
Debian |
|
|
|
1 |
11,873 |
Shell Programming and Scripting |
|
|
|
5 |
1,463 |
Shell Programming and Scripting |
|
|
|
5 |
1,915 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
1,672 |
Shell Programming and Scripting |
|
|
|
2 |
2,277 |
Shell Programming and Scripting |
|
|
|
8 |
3,156 |
Shell Programming and Scripting |
|
|
|
0 |
2,748 |
Programming |
|
|
|
3 |
4,751 |
Shell Programming and Scripting |
|
|
|
1 |
1,683 |
Shell Programming and Scripting |
|
|
|
2 |
1,928 |
Shell Programming and Scripting |
|
|
|
5 |
9,811 |
Shell Programming and Scripting |
|
|
|
9 |
12,701 |
Shell Programming and Scripting |
|
|
|
6 |
2,147 |
Shell Programming and Scripting |
|
|
|
12 |
3,550 |
Shell Programming and Scripting |
|
|
|
3 |
1,737 |
Shell Programming and Scripting |
|
|
|
6 |
4,135 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,998 |
Web Development |
|
|
|
0 |
913 |
Security Advisories (RSS) |
|
|
|
8 |
180,686 |
Shell Programming and Scripting |
|
|
|
3 |
2,064 |
Shell Programming and Scripting |
|
|
|
10 |
3,983 |
Shell Programming and Scripting |
|
|
|
6 |
5,748 |
Shell Programming and Scripting |
|
|
|
2 |
2,320 |
Shell Programming and Scripting |
|
|
|
2 |
1,403 |
Shell Programming and Scripting |
|
|
|
1 |
2,060 |
Shell Programming and Scripting |
|
|
|
2 |
3,266 |
Shell Programming and Scripting |
|
|
|
4 |
16,395 |
Shell Programming and Scripting |
|
|
|
0 |
843 |
Security Advisories (RSS) |
|
|
|
1 |
20,794 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,636 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
728 |
Software Releases - RSS News |
|
|
|
2 |
1,921 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,403 |
UNIX for Advanced & Expert Users |
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)