Package org.postgresql.core.v3
Interface SqlSerializationContext
-
public interface SqlSerializationContextSpecifies the properties required to convert SQL to String.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIdempotent()Returns true if the SQL to String conversion should be idempotent.booleangetStandardConformingStrings()Returns true if strings literals should usestandard_conforming_strings=onencoding.static SqlSerializationContextof(boolean standardConformingStrings, boolean idempotent)Returns SqlSerializationContext instance with the given parameters
-
-
-
Method Detail
-
of
static SqlSerializationContext of(boolean standardConformingStrings, boolean idempotent)
Returns SqlSerializationContext instance with the given parameters- Parameters:
standardConformingStrings- true when string literals should be standard conformingidempotent- true when idempotent conversion is needed- Returns:
- Returns SqlSerializationContext instance with the given parameters
-
getStandardConformingStrings
boolean getStandardConformingStrings()
Returns true if strings literals should usestandard_conforming_strings=onencoding.- Returns:
- true if strings literals should use
standard_conforming_strings=onencoding.
-
getIdempotent
boolean getIdempotent()
Returns true if the SQL to String conversion should be idempotent. For instance, if a query parameter comes from anInputStream, then the stream could be skipped when writing SQL with idempotent mode.- Returns:
- true if the SQL to String conversion should be idempotent
-
-