org.komapper.dialect.postgresql.jdbc.PostgreSqlJdbcDialect.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of komapper-dialect-postgresql-jdbc Show documentation
Show all versions of komapper-dialect-postgresql-jdbc Show documentation
Komapper PostgreSQL Dialect for JDBC
package org.komapper.dialect.postgresql.jdbc
import org.komapper.dialect.postgresql.PostgreSqlDialect
import org.komapper.jdbc.JdbcDialect
import java.sql.SQLException
interface PostgreSqlJdbcDialect : PostgreSqlDialect, JdbcDialect {
override fun isUniqueConstraintViolationError(exception: SQLException): Boolean {
return exception.filterIsInstance().any {
it.sqlState == PostgreSqlDialect.UNIQUE_CONSTRAINT_VIOLATION_STATE_CODE
}
}
}
private object PostgreSqlJdbcDialectImpl : PostgreSqlJdbcDialect
fun PostgreSqlJdbcDialect(): PostgreSqlJdbcDialect {
return PostgreSqlJdbcDialectImpl
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy