We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package org.example;
import net.sf.jsqlparser.parser.CCJSqlParser; import net.sf.jsqlparser.parser.CCJSqlParserUtil; import net.sf.jsqlparser.statement.Statement; import net.sf.jsqlparser.statement.Statements;
class Main {
public static void main(String[] args) { try { String sqlStr = "CREATE DATABASE USERS; "; Statement statement=CCJSqlParserUtil.parse(sqlStr); } catch (Exception e) { System.out.println(e.getMessage()); } }
}
The text was updated successfully, but these errors were encountered:
I just double checked that Grammar: there is indeed no support yet for CREATE DATABASE ... PRs are welcome.
CREATE DATABASE ...
Sorry, something went wrong.
Can you share a user guide on how to introduce new features ?
Greetings!
https://manticore-projects.com/JSQLParser/contribution.html
Cheers!
No branches or pull requests
package org.example;
import net.sf.jsqlparser.parser.CCJSqlParser;
import net.sf.jsqlparser.parser.CCJSqlParserUtil;
import net.sf.jsqlparser.statement.Statement;
import net.sf.jsqlparser.statement.Statements;
class Main {
}
The text was updated successfully, but these errors were encountered: