Description:
|
{{TypeInfo}} represents information about JDBC/SQL types as parsed from {{java.sql.DatabaseMetaData#getTypeInfo()}}
. Some potential ideas: * Can be used to properly quote (or not) literal values - see {{TypeInfo#getLiteralPrefix}}/{{TypeInfo#getLiteralSuffix}} (maybe even a new {{Type#quoteLiteral}} method) * Create a baseline for {{org.hibernate.dialect.Dialect#typeNames}} (though see HHH-7792) through a combination of {{Type#getJdbcTypeCode}}, {{Type#getTypeName}}, {{Type#getCreateParams}}, {{Type#getMinimumScale}}, {{Type#getMaximumScale}}, etc. * Create a baseline for {{org.hibernate.dialect.Dialect#hibernateTypeNames}} (though again see HHH-7792) ...
|