Uses of Enum Class
org.postgresql.jdbc.EscapeSyntaxCallMode
Packages that use EscapeSyntaxCallMode
-
Uses of EscapeSyntaxCallMode in org.postgresql.core
Fields in org.postgresql.core declared as EscapeSyntaxCallModeModifier and TypeFieldDescriptionprivate final EscapeSyntaxCallModeQueryExecutorBase.escapeSyntaxCallModeMethods in org.postgresql.core that return EscapeSyntaxCallModeModifier and TypeMethodDescriptionQueryExecutor.getEscapeSyntaxCallMode()QueryExecutorBase.getEscapeSyntaxCallMode()Methods in org.postgresql.core with parameters of type EscapeSyntaxCallModeModifier and TypeMethodDescriptionstatic JdbcCallParseInfoParser.modifyJdbcCall(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
Subclasses with type arguments of type EscapeSyntaxCallMode in org.postgresql.jdbcModifier and TypeClassDescriptionenumSpecifies whether a SELECT/CALL statement is used for the underlying SQL for JDBC escape call syntax: 'select' means to always use SELECT, 'callIfNoReturn' means to use CALL if there is no return parameter (otherwise use SELECT), and 'call' means to always use CALL.Methods in org.postgresql.jdbc that return EscapeSyntaxCallModeModifier and TypeMethodDescriptionstatic EscapeSyntaxCallModestatic EscapeSyntaxCallModeReturns the enum constant of this class with the specified name.static EscapeSyntaxCallMode[]EscapeSyntaxCallMode.values()Returns an array containing the constants of this enum class, in the order they are declared.