Merge pull request #150 from TennyZhuang/patch-2
Refine example in README.md
This commit is contained in:
commit
de657e7057
|
@ -40,8 +40,8 @@ To use the SQL parser in your own projects you simply have to follow these few s
|
|||
if (result.isValid() && result.size() > 0) {
|
||||
const hsql::SQLStatement* statement = result.getStatement(0);
|
||||
|
||||
if (statement.isType(hsql::SelectStatement)) {
|
||||
const hsql::SelectStatement* select = (const hsql::SelectStatement*) statement;
|
||||
if (statement->isType(hsql::kStmtSelect)) {
|
||||
const auto* select = static_cast<const hsql::SelectStatement*> statement;
|
||||
/* ... */
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue