| 42 | void SQLParserResult::setIsValid(bool isValid) { isValid_ = isValid; } |
| 43 | |
| 44 | void SQLParserResult::setErrorDetails(char* errorMsg, int errorLine, int errorColumn) { |
| 45 | errorMsg_ = errorMsg; |
| 46 | errorLine_ = errorLine; |
| 47 | errorColumn_ = errorColumn; |
| 48 | } |
| 49 | |
| 50 | const std::vector<SQLStatement*>& SQLParserResult::getStatements() const { return statements_; } |
| 51 |