Uses of Interface
org.postgresql.core.v3.SqlSerializationContext
-
Packages that use SqlSerializationContext Package Description org.postgresql.core org.postgresql.core.v3 org.postgresql.util -
-
Uses of SqlSerializationContext in org.postgresql.core
Methods in org.postgresql.core with parameters of type SqlSerializationContext Modifier and Type Method Description java.lang.String
NativeQuery. toString(ParameterList parameters, SqlSerializationContext context)
Returns string representation of the query, substituting particular parameter values for parameter placeholders.java.lang.String
ParameterList. toString(int index, SqlSerializationContext context)
Return the string literal representation of a particular parameter in this ParameterList.java.lang.String
Query. toString(ParameterList parameters, SqlSerializationContext context)
Returns string representation of the query, substituting particular parameter values for parameter placeholders. -
Uses of SqlSerializationContext in org.postgresql.core.v3
Methods in org.postgresql.core.v3 that return SqlSerializationContext Modifier and Type Method Description static SqlSerializationContext
SqlSerializationContext. of(boolean standardConformingStrings, boolean idempotent)
Returns SqlSerializationContext instance with the given parametersMethods in org.postgresql.core.v3 with parameters of type SqlSerializationContext Modifier and Type Method Description java.lang.String
BatchedQuery. toString(ParameterList params, SqlSerializationContext context)
-
Uses of SqlSerializationContext in org.postgresql.util
Methods in org.postgresql.util with parameters of type SqlSerializationContext Modifier and Type Method Description static java.lang.String
PGbytea. toPGLiteral(java.lang.Object value, SqlSerializationContext context)
Formats input object asbytea
literal like'\xcafebabe'::bytea
.
-