Package org.postgresql.core
Class JdbcCallParseInfo
- java.lang.Object
-
- org.postgresql.core.JdbcCallParseInfo
-
public class JdbcCallParseInfo extends Object
Contains parse flags fromParser.modifyJdbcCall(String, boolean, int, int, EscapeSyntaxCallMode).
-
-
Constructor Summary
Constructors Constructor Description JdbcCallParseInfo(String sql, boolean isFunction)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSql()SQL in a native for certain backend version.booleanisFunction()Returns if given SQL is a function.
-
-
-
Constructor Detail
-
JdbcCallParseInfo
public JdbcCallParseInfo(String sql, boolean isFunction)
-
-
Method Detail
-
getSql
public String getSql()
SQL in a native for certain backend version.- Returns:
- SQL in a native for certain backend version
-
isFunction
public boolean isFunction()
Returns if given SQL is a function.- Returns:
trueif given SQL is a function
-
-