1SQL::ReservedWords::SQLUisteer(3C)ontributed Perl DocumeSnQtLa:t:iRoenservedWords::SQLite(3)
2
3
4
6 SQL::ReservedWords::SQLite - Reserved SQL words by SQLite
7
9 if ( SQL::ReservedWords::SQLite->is_reserved( $word ) ) {
10 print "$word is a reserved SQLite word!";
11 }
12
14 Determine if words are reserved by SQLite.
15
17 is_reserved( $word )
18 Returns a boolean indicating if $word is reserved by either SQLite
19 2 or 3.
20
21 is_reserved_by_sqlite2( $word )
22 Returns a boolean indicating if $word is reserved by SQLite 2.
23
24 is_reserved_by_sqlite3( $word )
25 Returns a boolean indicating if $word is reserved by SQLite 3.
26
27 reserved_by( $word )
28 Returns a list with SQLite versions that reserves $word.
29
30 words
31 Returns a list with all reserved words.
32
34 Nothing by default. Following subroutines can be exported:
35
36 is_reserved
37 is_reserved_by_sqlite2
38 is_reserved_by_sqlite3
39 reserved_by
40 words
41
43 SQL::ReservedWords
44
45 <http://www.sqlite.org/docs.html>
46
48 Christian Hansen "chansen@cpan.org"
49
51 This program is free software, you can redistribute it and/or modify it
52 under the same terms as Perl itself.
53
54
55
56perl v5.36.0 2022-07-22 SQL::ReservedWords::SQLite(3)