|
Navigation
- Home
- Community
- Development
- myReactOS
- Fundraiser 2012
Doxygen
- Main Page
- Alphabetical List
- Data Structures
- Directories
- File List
- Data Fields
- Globals
- Related Pages
Search
|
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "wine/unicode.h"
#include "query.h"
#include "sql.tab.h"
Go to the source code of this file.
Data Structures |
| struct | Keyword |
Defines |
| #define | MAX_TOKEN_LEN 11 |
| #define | KEYWORD_COUNT ( sizeof aKeywordTable/sizeof (Keyword) ) |
Functions |
| static int | compKeyword (const void *m1, const void *m2) |
| static int | sqliteKeywordCode (const WCHAR *z, int n) |
| int | sqliteGetToken (const WCHAR *z, int *tokenType, int *skip) |
Variables |
| static const WCHAR | ADD_W [] = { 'A','D','D',0 } |
| static const WCHAR | ALTER_W [] = { 'A','L','T','E','R',0 } |
| static const WCHAR | AND_W [] = { 'A','N','D',0 } |
| static const WCHAR | BY_W [] = { 'B','Y',0 } |
| static const WCHAR | CHAR_W [] = { 'C','H','A','R',0 } |
| static const WCHAR | CHARACTER_W [] = { 'C','H','A','R','A','C','T','E','R',0 } |
| static const WCHAR | CREATE_W [] = { 'C','R','E','A','T','E',0 } |
| static const WCHAR | DELETE_W [] = { 'D','E','L','E','T','E',0 } |
| static const WCHAR | DISTINCT_W [] = { 'D','I','S','T','I','N','C','T',0 } |
| static const WCHAR | DROP_W [] = { 'D','R','O','P',0 } |
| static const WCHAR | FREE_W [] = { 'F','R','E','E',0 } |
| static const WCHAR | FROM_W [] = { 'F','R','O','M',0 } |
| static const WCHAR | HOLD_W [] = { 'H','O','L','D',0 } |
| static const WCHAR | INSERT_W [] = { 'I','N','S','E','R','T',0 } |
| static const WCHAR | INT_W [] = { 'I','N','T',0 } |
| static const WCHAR | INTEGER_W [] = { 'I','N','T','E','G','E','R',0 } |
| static const WCHAR | INTO_W [] = { 'I','N','T','O',0 } |
| static const WCHAR | IS_W [] = { 'I','S',0 } |
| static const WCHAR | KEY_W [] = { 'K','E','Y',0 } |
| static const WCHAR | LIKE_W [] = { 'L','I','K','E',0 } |
| static const WCHAR | LOCALIZABLE_W [] = { 'L','O','C','A','L','I','Z','A','B','L','E',0 } |
| static const WCHAR | LONG_W [] = { 'L','O','N','G',0 } |
| static const WCHAR | LONGCHAR_W [] = { 'L','O','N','G','C','H','A','R',0 } |
| static const WCHAR | NOT_W [] = { 'N','O','T',0 } |
| static const WCHAR | NULL_W [] = { 'N','U','L','L',0 } |
| static const WCHAR | OBJECT_W [] = { 'O','B','J','E','C','T',0 } |
| static const WCHAR | OR_W [] = { 'O','R',0 } |
| static const WCHAR | ORDER_W [] = { 'O','R','D','E','R',0 } |
| static const WCHAR | PRIMARY_W [] = { 'P','R','I','M','A','R','Y',0 } |
| static const WCHAR | SELECT_W [] = { 'S','E','L','E','C','T',0 } |
| static const WCHAR | SET_W [] = { 'S','E','T',0 } |
| static const WCHAR | SHORT_W [] = { 'S','H','O','R','T',0 } |
| static const WCHAR | TABLE_W [] = { 'T','A','B','L','E',0 } |
| static const WCHAR | TEMPORARY_W [] = { 'T','E','M','P','O','R','A','R','Y',0 } |
| static const WCHAR | UPDATE_W [] = { 'U','P','D','A','T','E',0 } |
| static const WCHAR | VALUES_W [] = { 'V','A','L','U','E','S',0 } |
| static const WCHAR | WHERE_W [] = { 'W','H','E','R','E',0 } |
| static const Keyword | aKeywordTable [] |
| static const char | isIdChar [] |
Generated on Sun May 27 2012 05:14:53 for ReactOS by
1.7.6.1
|