#include <CSql.h>
#include <os.h>
#include <Util.h>
Include dependency graph for Parser.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | FieldValue |
struct | ConditionValue |
struct | FieldName |
struct | UpdateFieldValue |
class | ParsedData |
Enumerations | |
enum | StatementType { UnknownStatement, SelectStatement, InsertStatement, UpdateStatement, DeleteStatement, CreateTableStatement, DropTableStatement, CreateIndexStatement, DropIndexStatement } |
enum StatementType |
UnknownStatement | |
SelectStatement | |
InsertStatement | |
UpdateStatement | |
DeleteStatement | |
CreateTableStatement | |
DropTableStatement | |
CreateIndexStatement | |
DropIndexStatement |
Definition at line 25 of file Parser.h.
00026 { 00027 UnknownStatement, 00028 SelectStatement, 00029 InsertStatement, 00030 UpdateStatement, 00031 DeleteStatement, 00032 CreateTableStatement, 00033 DropTableStatement, 00034 CreateIndexStatement, 00035 DropIndexStatement 00036 };