public interface StatementParser
Modifier and Type | Interface and Description |
---|---|
static class |
StatementParser.ParseException
Exception to wrap other exceptions when parsing.
|
Modifier and Type | Method and Description |
---|---|
JaybirdStatementModel |
parseInsertStatement(java.lang.String sql)
Deprecated.
Use
parseStatement(String) instead; will be removed in Jaybird 5 |
JaybirdStatementModel |
parseStatement(java.lang.String sql)
Parses the provided SQL into a statement model
|
@Deprecated JaybirdStatementModel parseInsertStatement(java.lang.String sql) throws StatementParser.ParseException
parseStatement(String)
instead; will be removed in Jaybird 5
Implementation must call parseStatement(String)
.
sql
- SQL query text to parseStatementParser.ParseException
- For errors parsing the queryJaybirdStatementModel parseStatement(java.lang.String sql) throws StatementParser.ParseException
sql
- SQL query text to parseStatementParser.ParseException
- For errors parsing the queryCopyright © 2001-2020 Jaybird (Firebird JDBC/JCA) team. All rights reserved.