org.sonar.db.dialect.Dialect.init()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(182)

本文整理了Java中org.sonar.db.dialect.Dialect.init()方法的一些代码示例,展示了Dialect.init()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Dialect.init()方法的具体详情如下:
包路径:org.sonar.db.dialect.Dialect
类名称:Dialect
方法名:init

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);
 }
}

相关文章