1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
  
     | 
    
      NAME
    SQL::ReservedWords - Reserved SQL words by ANSI/ISO
SYNOPSIS
       if ( SQL::ReservedWords->is_reserved( $word ) ) {
           print "$word is a reserved SQL word!";
       }
DESCRIPTION
    Determine if words are reserved by ANSI/ISO SQL standard.
METHODS
    is_reserved( $word )
        Returns a boolean indicating if $word is reserved by either
        "SQL:1992", "SQL:1999" or "SQL:2003".
    is_reserved_by_sql1992( $word )
        Returns a boolean indicating if $word is reserved by "SQL:1992".
    is_reserved_by_sql1999( $word )
        Returns a boolean indicating if $word is reserved by "SQL:1999".
    is_reserved_by_sql2003( $word )
        Returns a boolean indicating if $word is reserved by "SQL:2003".
    reserved_by( $word )
        Returns a list with SQL standards 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_sql1992
    is_reserved_by_sql1999
    is_reserved_by_sql2003
    reserved_by
    words
SEE ALSO
    SQL::ReservedWords::DB2
    SQL::ReservedWords::MySQL
    SQL::ReservedWords::ODBC
    SQL::ReservedWords::Oracle
    SQL::ReservedWords::PostgreSQL
    SQL::ReservedWords::SQLite
    SQL::ReservedWords::SQLServer
    ISO/IEC 9075:1992 Database languages -- SQL
    ISO/IEC 9075-2:1999 Database languages -- SQL -- Part 2: Foundation
    (SQL/Foundation)
    ISO/IEC 9075-2:2003 Database languages -- SQL -- Part 2: Foundation
    (SQL/Foundation)
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.
 
     |