Package | Description |
---|---|
org.postgresql.core | |
org.postgresql.jdbc |
Modifier and Type | Field and Description |
---|---|
private EscapeSyntaxCallMode |
QueryExecutorBase.escapeSyntaxCallMode |
Modifier and Type | Method and Description |
---|---|
EscapeSyntaxCallMode |
QueryExecutorBase.getEscapeSyntaxCallMode() |
EscapeSyntaxCallMode |
QueryExecutor.getEscapeSyntaxCallMode() |
Modifier and Type | Method and Description |
---|---|
static JdbcCallParseInfo |
Parser.modifyJdbcCall(java.lang.String jdbcSql,
boolean stdStrings,
int serverVersion,
int protocolVersion,
EscapeSyntaxCallMode escapeSyntaxCallMode)
Converts JDBC-specific callable statement escapes
{ [? =] call <some_function> [(?,
[?,..])] } into the PostgreSQL format which is select <some_function> (?, [?, ...]) as
result or select * from <some_function> (?, [?, ...]) as result (7.3) |
Modifier and Type | Method and Description |
---|---|
static EscapeSyntaxCallMode |
EscapeSyntaxCallMode.of(java.lang.String mode) |
static EscapeSyntaxCallMode |
EscapeSyntaxCallMode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EscapeSyntaxCallMode[] |
EscapeSyntaxCallMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|