~smartboyhw/ubuntu/raring/calligra/2.6.0-0ubuntu1

« back to all changes in this revision

Viewing changes to libs/db/keywords.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-10-23 21:09:16 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20121023210916-m82w6zxnxhaxz7va
Tags: 1:2.5.90-0ubuntu1
* New upstream alpha release (LP: #1070436)
  - Add libkactivities-dev and libopenimageio-dev to build-depends
  - Add kubuntu_build_calligraactive.diff to build calligraactive by default
  - Add package for calligraauthor and move files that are shared between
    calligrawords and calligraauthor to calligrawords-common
* Document the patches
* Remove numbers from patches so they follow the same naming scheme as
  the rest of our patches.
* calligra-data breaks replaces krita-data (<< 1:2.5.3) (LP: #1071686)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 2004 Martin Ellis <martin.ellis@kdemail.net>
 
3
   Copyright (C) 2004 Jarosław Staniek <staniek@kde.org>
 
4
 
 
5
   This file has been automatically generated from
 
6
   calligra/kexi/tools/sql_keywords/sql_keywords.sh and
 
7
   calligra/kexi/kexidb/parser/sqlscanner.l
 
8
   and calligra/kexi/tools/sql_keywords/kexi_reserved.
 
9
 
 
10
   Please edit the sql_keywords.sh, not this file!
 
11
 
 
12
   This program is free software; you can redistribute it and/or
 
13
   modify it under the terms of the GNU Library General Public
 
14
   License as published by the Free Software Foundation; either
 
15
   version 2 of the License, or (at your option) any later version.
 
16
 
 
17
   This program is distributed in the hope that it will be useful,
 
18
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
20
   Library General Public License for more details.
 
21
 
 
22
   You should have received a copy of the GNU Library General Public License
 
23
   along with this program; see the file COPYING.  If not, write to
 
24
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
25
 * Boston, MA 02110-1301, USA.
 
26
*/
 
27
 
 
28
#include <driver_p.h>
 
29
 
 
30
namespace KexiDB
 
31
{
 
32
const char* DriverPrivate::kexiSQLKeywords[] = {
 
33
    "AND",
 
34
    "AS",
 
35
    "CREATE",
 
36
    "FROM",
 
37
    "IN",
 
38
    "INTEGER",
 
39
    "IS",
 
40
    "JOIN",
 
41
    "LEFT",
 
42
    "LIKE",
 
43
    "NOT",
 
44
    "NULL",
 
45
    "ON",
 
46
    "OR",
 
47
    "RIGHT",
 
48
    "SELECT",
 
49
    "SIMILAR",
 
50
    "TABLE",
 
51
    "TO",
 
52
    "WHERE",
 
53
    "XOR",
 
54
    "AFTER",
 
55
    "ALL",
 
56
    "ASC",
 
57
    "BEFORE",
 
58
    "BEGIN",
 
59
    "BETWEEN",
 
60
    "BY",
 
61
    "CASCADE",
 
62
    "CASE",
 
63
    "CHECK",
 
64
    "COLLATE",
 
65
    "COMMIT",
 
66
    "CONSTRAINT",
 
67
    "CROSS",
 
68
    "DATABASE",
 
69
    "DEFAULT",
 
70
    "DELETE",
 
71
    "DESC",
 
72
    "DISTINCT",
 
73
    "DROP",
 
74
    "END",
 
75
    "ELSE",
 
76
    "EXPLAIN",
 
77
    "FOR",
 
78
    "FOREIGN",
 
79
    "FULL",
 
80
    "GROUP",
 
81
    "HAVING",
 
82
    "IGNORE",
 
83
    "INDEX",
 
84
    "INNER",
 
85
    "INSERT",
 
86
    "INTO",
 
87
    "KEY",
 
88
    "LIMIT",
 
89
    "MATCH",
 
90
    "NATURAL",
 
91
    "OFFSET",
 
92
    "ORDER",
 
93
    "OUTER",
 
94
    "PRIMARY",
 
95
    "REFERENCES",
 
96
    "REPLACE",
 
97
    "RESTRICT",
 
98
    "ROLLBACK",
 
99
    "ROW",
 
100
    "SET",
 
101
    "TEMPORARY",
 
102
    "THEN",
 
103
    "TRANSACTION",
 
104
    "UNION",
 
105
    "UNIQUE",
 
106
    "UPDATE",
 
107
    "USING",
 
108
    "VALUES",
 
109
    "WHEN",
 
110
    0
 
111
};
 
112
}