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
Fields in org.postgresql.core declared as EscapeSyntaxCallMode Modifier and Type Field Description private EscapeSyntaxCallModeQueryExecutorBase. escapeSyntaxCallModeMethods in org.postgresql.core that return EscapeSyntaxCallMode Modifier and Type Method Description EscapeSyntaxCallModeQueryExecutor. getEscapeSyntaxCallMode()EscapeSyntaxCallModeQueryExecutorBase. getEscapeSyntaxCallMode()Methods in org.postgresql.core with parameters of type EscapeSyntaxCallMode Modifier and Type Method Description static JdbcCallParseInfoParser. modifyJdbcCall(java.lang.String jdbcSql, boolean stdStrings, int serverVersion, EscapeSyntaxCallMode escapeSyntaxCallMode)Converts JDBC-specific callable statement escapes{ [? =] call <some_function> [(?, [?,..])] }into the PostgreSQL format which isselect <some_function> (?, [?, ...]) as resultorselect * 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 EscapeSyntaxCallModeEscapeSyntaxCallMode. of(java.lang.String mode)static EscapeSyntaxCallModeEscapeSyntaxCallMode. 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.
-