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:
|
2014-10-23 11:41:44 +02:00
|
|
|
static Statement* parseSQLString(const char* sql);
|
2014-10-09 01:30:22 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
SQLParser();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|