2014-10-09 01:30:22 +02:00
|
|
|
#ifndef __SQLPARSER_H_
|
|
|
|
#define __SQLPARSER_H_
|
|
|
|
|
|
|
|
#include "Statement.h"
|
2014-10-22 16:01:25 +02:00
|
|
|
#include "bison_parser.h"
|
2014-10-09 01:30:22 +02:00
|
|
|
|
|
|
|
class SQLParser {
|
|
|
|
public:
|
|
|
|
static Statement* parseSQL(const char* sql);
|
|
|
|
|
|
|
|
private:
|
|
|
|
SQLParser();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|