Unix and Linux Discussions Tagged with word |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
9,411 |
Shell Programming and Scripting |
|
|
|
1 |
4,636 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,808 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,019 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
6,133 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,385 |
Shell Programming and Scripting |
|
|
|
2 |
5,058 |
Debian |
|
|
|
1 |
13,283 |
Shell Programming and Scripting |
|
|
|
5 |
2,056 |
Shell Programming and Scripting |
|
|
|
5 |
2,365 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
1,960 |
Shell Programming and Scripting |
|
|
|
2 |
3,013 |
Shell Programming and Scripting |
|
|
|
8 |
3,782 |
Shell Programming and Scripting |
|
|
|
0 |
3,212 |
Programming |
|
|
|
3 |
6,674 |
Shell Programming and Scripting |
|
|
|
1 |
2,032 |
Shell Programming and Scripting |
|
|
|
2 |
2,230 |
Shell Programming and Scripting |
|
|
|
5 |
11,238 |
Shell Programming and Scripting |
|
|
|
9 |
13,819 |
Shell Programming and Scripting |
|
|
|
6 |
2,562 |
Shell Programming and Scripting |
|
|
|
12 |
4,129 |
Shell Programming and Scripting |
|
|
|
3 |
2,120 |
Shell Programming and Scripting |
|
|
|
6 |
4,735 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
4,418 |
Web Development |
|
|
|
0 |
1,117 |
Security Advisories (RSS) |
|
|
|
8 |
186,303 |
Shell Programming and Scripting |
|
|
|
3 |
2,349 |
Shell Programming and Scripting |
|
|
|
10 |
4,674 |
Shell Programming and Scripting |
|
|
|
6 |
6,226 |
Shell Programming and Scripting |
|
|
|
2 |
2,850 |
Shell Programming and Scripting |
|
|
|
2 |
1,645 |
Shell Programming and Scripting |
|
|
|
1 |
2,546 |
Shell Programming and Scripting |
|
|
|
2 |
4,104 |
Shell Programming and Scripting |
|
|
|
4 |
16,750 |
Shell Programming and Scripting |
|
|
|
0 |
1,056 |
Security Advisories (RSS) |
|
|
|
1 |
22,797 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,033 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,072 |
Software Releases - RSS News |
|
|
|
2 |
2,317 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,041 |
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)