本文整理了Java中org.sonar.db.dialect.Dialect.init()
方法的一些代码示例,展示了Dialect.init()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Dialect.init()
方法的具体详情如下:
包路径:org.sonar.db.dialect.Dialect
类名称:Dialect
方法名:init
[英]This method is called when connecting for the first time to the database.
[中]第一次连接到数据库时调用此方法。
代码示例来源:origin: SonarSource/sonarqube
private void checkConnection() {
Connection connection = null;
try {
connection = datasource.getConnection();
dialect.init(connection.getMetaData());
} catch (SQLException e) {
throw new IllegalStateException("Can not connect to database. Please check connectivity and settings (see the properties prefixed by 'sonar.jdbc.').", e);
} finally {
DbUtils.closeQuietly(connection);
}
}
代码示例来源:origin: org.sonarsource.sonarqube/sonar-db-core
private void checkConnection() {
Connection connection = null;
try {
connection = datasource.getConnection();
dialect.init(connection.getMetaData());
} catch (SQLException e) {
throw new IllegalStateException("Can not connect to database. Please check connectivity and settings (see the properties prefixed by 'sonar.jdbc.').", e);
} finally {
DbUtils.closeQuietly(connection);
}
}
内容来源于网络,如有侵权,请联系作者删除!