Uses of Class
org.postgresql.jdbc.EscapeSyntaxCallMode
-
Packages that use EscapeSyntaxCallMode Package Description org.postgresql.core org.postgresql.jdbc -
-
Uses of EscapeSyntaxCallMode in org.postgresql.core
Methods in org.postgresql.core that return EscapeSyntaxCallMode Modifier and Type Method Description EscapeSyntaxCallMode
QueryExecutor. getEscapeSyntaxCallMode()
EscapeSyntaxCallMode
QueryExecutorBase. getEscapeSyntaxCallMode()
Methods in org.postgresql.core with parameters of type EscapeSyntaxCallMode Modifier and Type Method 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 isselect <some_function> (?, [?, ...]) as result
orselect * from <some_function> (?, [?, ...]) as result
(7.3) -
Uses of EscapeSyntaxCallMode in org.postgresql.jdbc
Methods in org.postgresql.jdbc that return EscapeSyntaxCallMode Modifier and Type Method 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.
-