wasCSharpSQLite – Blame information for rev
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | /* |
2 | ************************************************************************* |
||
3 | ** Included in SQLite3 port to C#-SQLite; 2008 Noah B Hart |
||
4 | ** C#-SQLite is an independent reimplementation of the SQLite software library |
||
5 | ** |
||
6 | ** SQLITE_SOURCE_ID: 2010-08-23 18:52:01 42537b60566f288167f1b5864a5435986838e3a3 |
||
7 | ** |
||
8 | ************************************************************************* |
||
9 | */ |
||
10 | |||
11 | namespace Community.CsharpSqlite |
||
12 | { |
||
13 | public partial class Sqlite3 |
||
14 | { |
||
15 | //#define TK_SEMI 1 |
||
16 | //#define TK_EXPLAIN 2 |
||
17 | //#define TK_QUERY 3 |
||
18 | //#define TK_PLAN 4 |
||
19 | //#define TK_BEGIN 5 |
||
20 | //#define TK_TRANSACTION 6 |
||
21 | //#define TK_DEFERRED 7 |
||
22 | //#define TK_IMMEDIATE 8 |
||
23 | //#define TK_EXCLUSIVE 9 |
||
24 | //#define TK_COMMIT 10 |
||
25 | //#define TK_END 11 |
||
26 | //#define TK_ROLLBACK 12 |
||
27 | //#define TK_SAVEPOINT 13 |
||
28 | //#define TK_RELEASE 14 |
||
29 | //#define TK_TO 15 |
||
30 | //#define TK_TABLE 16 |
||
31 | //#define TK_CREATE 17 |
||
32 | //#define TK_IF 18 |
||
33 | //#define TK_NOT 19 |
||
34 | //#define TK_EXISTS 20 |
||
35 | //#define TK_TEMP 21 |
||
36 | //#define TK_LP 22 |
||
37 | //#define TK_RP 23 |
||
38 | //#define TK_AS 24 |
||
39 | //#define TK_COMMA 25 |
||
40 | //#define TK_ID 26 |
||
41 | //#define TK_INDEXED 27 |
||
42 | //#define TK_ABORT 28 |
||
43 | //#define TK_ACTION 29 |
||
44 | //#define TK_AFTER 30 |
||
45 | //#define TK_ANALYZE 31 |
||
46 | //#define TK_ASC 32 |
||
47 | //#define TK_ATTACH 33 |
||
48 | //#define TK_BEFORE 34 |
||
49 | //#define TK_BY 35 |
||
50 | //#define TK_CASCADE 36 |
||
51 | //#define TK_CAST 37 |
||
52 | //#define TK_COLUMNKW 38 |
||
53 | //#define TK_CONFLICT 39 |
||
54 | //#define TK_DATABASE 40 |
||
55 | //#define TK_DESC 41 |
||
56 | //#define TK_DETACH 42 |
||
57 | //#define TK_EACH 43 |
||
58 | //#define TK_FAIL 44 |
||
59 | //#define TK_FOR 45 |
||
60 | //#define TK_IGNORE 46 |
||
61 | //#define TK_INITIALLY 47 |
||
62 | //#define TK_INSTEAD 48 |
||
63 | //#define TK_LIKE_KW 49 |
||
64 | //#define TK_MATCH 50 |
||
65 | //#define TK_NO 51 |
||
66 | //#define TK_KEY 52 |
||
67 | //#define TK_OF 53 |
||
68 | //#define TK_OFFSET 54 |
||
69 | //#define TK_PRAGMA 55 |
||
70 | //#define TK_RAISE 56 |
||
71 | //#define TK_REPLACE 57 |
||
72 | //#define TK_RESTRICT 58 |
||
73 | //#define TK_ROW 59 |
||
74 | //#define TK_TRIGGER 60 |
||
75 | //#define TK_VACUUM 61 |
||
76 | //#define TK_VIEW 62 |
||
77 | //#define TK_VIRTUAL 63 |
||
78 | //#define TK_REINDEX 64 |
||
79 | //#define TK_RENAME 65 |
||
80 | //#define TK_CTIME_KW 66 |
||
81 | //#define TK_ANY 67 |
||
82 | //#define TK_OR 68 |
||
83 | //#define TK_AND 69 |
||
84 | //#define TK_IS 70 |
||
85 | //#define TK_BETWEEN 71 |
||
86 | //#define TK_IN 72 |
||
87 | //#define TK_ISNULL 73 |
||
88 | //#define TK_NOTNULL 74 |
||
89 | //#define TK_NE 75 |
||
90 | //#define TK_EQ 76 |
||
91 | //#define TK_GT 77 |
||
92 | //#define TK_LE 78 |
||
93 | //#define TK_LT 79 |
||
94 | //#define TK_GE 80 |
||
95 | //#define TK_ESCAPE 81 |
||
96 | //#define TK_BITAND 82 |
||
97 | //#define TK_BITOR 83 |
||
98 | //#define TK_LSHIFT 84 |
||
99 | //#define TK_RSHIFT 85 |
||
100 | //#define TK_PLUS 86 |
||
101 | //#define TK_MINUS 87 |
||
102 | //#define TK_STAR 88 |
||
103 | //#define TK_SLASH 89 |
||
104 | //#define TK_REM 90 |
||
105 | //#define TK_CONCAT 91 |
||
106 | //#define TK_COLLATE 92 |
||
107 | //#define TK_BITNOT 93 |
||
108 | //#define TK_STRING 94 |
||
109 | //#define TK_JOIN_KW 95 |
||
110 | //#define TK_CONSTRAINT 96 |
||
111 | //#define TK_DEFAULT 97 |
||
112 | //#define TK_NULL 98 |
||
113 | //#define TK_PRIMARY 99 |
||
114 | //#define TK_UNIQUE 100 |
||
115 | //#define TK_CHECK 101 |
||
116 | //#define TK_REFERENCES 102 |
||
117 | //#define TK_AUTOINCR 103 |
||
118 | //#define TK_ON 104 |
||
119 | //#define TK_INSERT 105 |
||
120 | //#define TK_DELETE 106 |
||
121 | //#define TK_UPDATE 107 |
||
122 | //#define TK_SET 108 |
||
123 | //#define TK_DEFERRABLE 109 |
||
124 | //#define TK_FOREIGN 110 |
||
125 | //#define TK_DROP 111 |
||
126 | //#define TK_UNION 112 |
||
127 | //#define TK_ALL 113 |
||
128 | //#define TK_EXCEPT 114 |
||
129 | //#define TK_INTERSECT 115 |
||
130 | //#define TK_SELECT 116 |
||
131 | //#define TK_DISTINCT 117 |
||
132 | //#define TK_DOT 118 |
||
133 | //#define TK_FROM 119 |
||
134 | //#define TK_JOIN 120 |
||
135 | //#define TK_USING 121 |
||
136 | //#define TK_ORDER 122 |
||
137 | //#define TK_GROUP 123 |
||
138 | //#define TK_HAVING 124 |
||
139 | //#define TK_LIMIT 125 |
||
140 | //#define TK_WHERE 126 |
||
141 | //#define TK_INTO 127 |
||
142 | //#define TK_VALUES 128 |
||
143 | //#define TK_INTEGER 129 |
||
144 | //#define TK_FLOAT 130 |
||
145 | //#define TK_BLOB 131 |
||
146 | //#define TK_REGISTER 132 |
||
147 | //#define TK_VARIABLE 133 |
||
148 | //#define TK_CASE 134 |
||
149 | //#define TK_WHEN 135 |
||
150 | //#define TK_THEN 136 |
||
151 | //#define TK_ELSE 137 |
||
152 | //#define TK_INDEX 138 |
||
153 | //#define TK_ALTER 139 |
||
154 | //#define TK_ADD 140 |
||
155 | //#define TK_TO_TEXT 141 |
||
156 | //#define TK_TO_BLOB 142 |
||
157 | //#define TK_TO_NUMERIC 143 |
||
158 | //#define TK_TO_INT 144 |
||
159 | //#define TK_TO_REAL 145 |
||
160 | //#define TK_ISNOT 146 |
||
161 | //#define TK_END_OF_FILE 147 |
||
162 | //#define TK_ILLEGAL 148 |
||
163 | //#define TK_SPACE 149 |
||
164 | //#define TK_UNCLOSED_STRING 150 |
||
165 | //#define TK_FUNCTION 151 |
||
166 | //#define TK_COLUMN 152 |
||
167 | //#define TK_AGG_FUNCTION 153 |
||
168 | //#define TK_AGG_COLUMN 154 |
||
169 | //#define TK_CONST_FUNC 155 |
||
170 | //#define TK_UMINUS 156 |
||
171 | //#define TK_UPLUS 157 |
||
172 | public const int TK_SEMI = 1; |
||
173 | public const int TK_EXPLAIN = 2; |
||
174 | public const int TK_QUERY = 3; |
||
175 | public const int TK_PLAN = 4; |
||
176 | public const int TK_BEGIN = 5; |
||
177 | public const int TK_TRANSACTION = 6; |
||
178 | public const int TK_DEFERRED = 7; |
||
179 | public const int TK_IMMEDIATE = 8; |
||
180 | public const int TK_EXCLUSIVE = 9; |
||
181 | public const int TK_COMMIT = 10; |
||
182 | public const int TK_END = 11; |
||
183 | public const int TK_ROLLBACK = 12; |
||
184 | public const int TK_SAVEPOINT = 13; |
||
185 | public const int TK_RELEASE = 14; |
||
186 | public const int TK_TO = 15; |
||
187 | public const int TK_TABLE = 16; |
||
188 | public const int TK_CREATE = 17; |
||
189 | public const int TK_IF = 18; |
||
190 | public const int TK_NOT = 19; |
||
191 | public const int TK_EXISTS = 20; |
||
192 | public const int TK_TEMP = 21; |
||
193 | public const int TK_LP = 22; |
||
194 | public const int TK_RP = 23; |
||
195 | public const int TK_AS = 24; |
||
196 | public const int TK_COMMA = 25; |
||
197 | public const int TK_ID = 26; |
||
198 | public const int TK_INDEXED = 27; |
||
199 | public const int TK_ABORT = 28; |
||
200 | public const int TK_ACTION = 29; |
||
201 | public const int TK_AFTER = 30; |
||
202 | public const int TK_ANALYZE = 31; |
||
203 | public const int TK_ASC = 32; |
||
204 | public const int TK_ATTACH = 33; |
||
205 | public const int TK_BEFORE = 34; |
||
206 | public const int TK_BY = 35; |
||
207 | public const int TK_CASCADE = 36; |
||
208 | public const int TK_CAST = 37; |
||
209 | public const int TK_COLUMNKW = 38; |
||
210 | public const int TK_CONFLICT = 39; |
||
211 | public const int TK_DATABASE = 40; |
||
212 | public const int TK_DESC = 41; |
||
213 | public const int TK_DETACH = 42; |
||
214 | public const int TK_EACH = 43; |
||
215 | public const int TK_FAIL = 44; |
||
216 | public const int TK_FOR = 45; |
||
217 | public const int TK_IGNORE = 46; |
||
218 | public const int TK_INITIALLY = 47; |
||
219 | public const int TK_INSTEAD = 48; |
||
220 | public const int TK_LIKE_KW = 49; |
||
221 | public const int TK_MATCH = 50; |
||
222 | public const int TK_NO = 51; |
||
223 | public const int TK_KEY = 52; |
||
224 | public const int TK_OF = 53; |
||
225 | public const int TK_OFFSET = 54; |
||
226 | public const int TK_PRAGMA = 55; |
||
227 | public const int TK_RAISE = 56; |
||
228 | public const int TK_REPLACE = 57; |
||
229 | public const int TK_RESTRICT = 58; |
||
230 | public const int TK_ROW = 59; |
||
231 | public const int TK_TRIGGER = 60; |
||
232 | public const int TK_VACUUM = 61; |
||
233 | public const int TK_VIEW = 62; |
||
234 | public const int TK_VIRTUAL = 63; |
||
235 | public const int TK_REINDEX = 64; |
||
236 | public const int TK_RENAME = 65; |
||
237 | public const int TK_CTIME_KW = 66; |
||
238 | public const int TK_ANY = 67; |
||
239 | public const int TK_OR = 68; |
||
240 | public const int TK_AND = 69; |
||
241 | public const int TK_IS = 70; |
||
242 | public const int TK_BETWEEN = 71; |
||
243 | public const int TK_IN = 72; |
||
244 | public const int TK_ISNULL = 73; |
||
245 | public const int TK_NOTNULL = 74; |
||
246 | public const int TK_NE = 75; |
||
247 | public const int TK_EQ = 76; |
||
248 | public const int TK_GT = 77; |
||
249 | public const int TK_LE = 78; |
||
250 | public const int TK_LT = 79; |
||
251 | public const int TK_GE = 80; |
||
252 | public const int TK_ESCAPE = 81; |
||
253 | public const int TK_BITAND = 82; |
||
254 | public const int TK_BITOR = 83; |
||
255 | public const int TK_LSHIFT = 84; |
||
256 | public const int TK_RSHIFT = 85; |
||
257 | public const int TK_PLUS = 86; |
||
258 | public const int TK_MINUS = 87; |
||
259 | public const int TK_STAR = 88; |
||
260 | public const int TK_SLASH = 89; |
||
261 | public const int TK_REM = 90; |
||
262 | public const int TK_CONCAT = 91; |
||
263 | public const int TK_COLLATE = 92; |
||
264 | public const int TK_BITNOT = 93; |
||
265 | public const int TK_STRING = 94; |
||
266 | public const int TK_JOIN_KW = 95; |
||
267 | public const int TK_CONSTRAINT = 96; |
||
268 | public const int TK_DEFAULT = 97; |
||
269 | public const int TK_NULL = 98; |
||
270 | public const int TK_PRIMARY = 99; |
||
271 | public const int TK_UNIQUE = 100; |
||
272 | public const int TK_CHECK = 101; |
||
273 | public const int TK_REFERENCES = 102; |
||
274 | public const int TK_AUTOINCR = 103; |
||
275 | public const int TK_ON = 104; |
||
276 | public const int TK_INSERT = 105; |
||
277 | public const int TK_DELETE = 106; |
||
278 | public const int TK_UPDATE = 107; |
||
279 | public const int TK_SET = 108; |
||
280 | public const int TK_DEFERRABLE = 109; |
||
281 | public const int TK_FOREIGN = 110; |
||
282 | public const int TK_DROP = 111; |
||
283 | public const int TK_UNION = 112; |
||
284 | public const int TK_ALL = 113; |
||
285 | public const int TK_EXCEPT = 114; |
||
286 | public const int TK_INTERSECT = 115; |
||
287 | public const int TK_SELECT = 116; |
||
288 | public const int TK_DISTINCT = 117; |
||
289 | public const int TK_DOT = 118; |
||
290 | public const int TK_FROM = 119; |
||
291 | public const int TK_JOIN = 120; |
||
292 | public const int TK_USING = 121; |
||
293 | public const int TK_ORDER = 122; |
||
294 | public const int TK_GROUP = 123; |
||
295 | public const int TK_HAVING = 124; |
||
296 | public const int TK_LIMIT = 125; |
||
297 | public const int TK_WHERE = 126; |
||
298 | public const int TK_INTO = 127; |
||
299 | public const int TK_VALUES = 128; |
||
300 | public const int TK_INTEGER = 129; |
||
301 | public const int TK_FLOAT = 130; |
||
302 | public const int TK_BLOB = 131; |
||
303 | public const int TK_REGISTER = 132; |
||
304 | public const int TK_VARIABLE = 133; |
||
305 | public const int TK_CASE = 134; |
||
306 | public const int TK_WHEN = 135; |
||
307 | public const int TK_THEN = 136; |
||
308 | public const int TK_ELSE = 137; |
||
309 | public const int TK_INDEX = 138; |
||
310 | public const int TK_ALTER = 139; |
||
311 | public const int TK_ADD = 140; |
||
312 | public const int TK_TO_TEXT = 141; |
||
313 | public const int TK_TO_BLOB = 142; |
||
314 | public const int TK_TO_NUMERIC = 143; |
||
315 | public const int TK_TO_INT = 144; |
||
316 | public const int TK_TO_REAL = 145; |
||
317 | public const int TK_ISNOT = 146; |
||
318 | public const int TK_END_OF_FILE = 147; |
||
319 | public const int TK_ILLEGAL = 148; |
||
320 | public const int TK_SPACE = 149; |
||
321 | public const int TK_UNCLOSED_STRING = 150; |
||
322 | public const int TK_FUNCTION = 151; |
||
323 | public const int TK_COLUMN = 152; |
||
324 | public const int TK_AGG_FUNCTION = 153; |
||
325 | public const int TK_AGG_COLUMN = 154; |
||
326 | public const int TK_CONST_FUNC = 155; |
||
327 | public const int TK_UMINUS = 156; |
||
328 | public const int TK_UPLUS = 157; |
||
329 | } |
||
330 | } |