Uses of Interface
org.springframework.data.relational.core.sql.IdentifierProcessing
Packages that use IdentifierProcessing
Package
Description
Dialects abstract the SQL dialect of the underlying database.
Statement Builder implementation.
SQL rendering utilities to render SQL from the Statement Builder API.
-
Uses of IdentifierProcessing in org.springframework.data.relational.core.dialect
Fields in org.springframework.data.relational.core.dialect declared as IdentifierProcessingModifier and TypeFieldDescriptionstatic final IdentifierProcessingMySqlDialect.MYSQL_IDENTIFIER_PROCESSINGMySQL defaults forIdentifierProcessing.Methods in org.springframework.data.relational.core.dialect that return IdentifierProcessingModifier and TypeMethodDescriptionAnsiDialect.getIdentifierProcessing()Db2Dialect.getIdentifierProcessing()default IdentifierProcessingDialect.getIdentifierProcessing()Returns theIdentifierProcessingused for processingSqlIdentifierwhen converting them to SQL snippets or parameter names.H2Dialect.getIdentifierProcessing()MySqlDialect.getIdentifierProcessing()PostgresDialect.getIdentifierProcessing()SqlServerDialect.getIdentifierProcessing()Constructors in org.springframework.data.relational.core.dialect with parameters of type IdentifierProcessingModifierConstructorDescriptionMariaDbDialect(IdentifierProcessing identifierProcessing) MySqlDialect(IdentifierProcessing identifierProcessing) Creates a newMySqlDialectgivenIdentifierProcessing. -
Uses of IdentifierProcessing in org.springframework.data.relational.core.sql
Fields in org.springframework.data.relational.core.sql declared as IdentifierProcessingModifier and TypeFieldDescriptionstatic final IdentifierProcessingIdentifierProcessing.ANSIAnIdentifierProcessingthat can be used for databases adhering to the SQL standard which uses double quotes (") for quoting and makes unquoted literals equivalent to upper case.static final IdentifierProcessingIdentifierProcessing.NONEAnIdentifierProcessingwithout applying transformations.Methods in org.springframework.data.relational.core.sql with parameters of type IdentifierProcessingModifier and TypeMethodDescriptionSqlIdentifier.toSql(IdentifierProcessing processing) Use this method when rendering an identifier in SQL statements as in: -
Uses of IdentifierProcessing in org.springframework.data.relational.core.sql.render
Methods in org.springframework.data.relational.core.sql.render that return IdentifierProcessingModifier and TypeMethodDescriptionRenderContext.getIdentifierProcessing()Returns the configuredIdentifierProcessing.