Exemple #1
0
  /*
   * (non-Javadoc)
   *
   * @see javax.sql.CommonDataSource#getLoginTimeout()
   */
  @Override
  public int getLoginTimeout() throws SQLException {
    if (datasource == null)
      throw new ConfigurationException("Logic DataSource in Oceanus, do not support this function");

    return datasource.getLoginTimeout();
  }
Exemple #2
0
 public int getLoginTimeout() throws SQLException {
   return realDataSource.getLoginTimeout();
 }
Exemple #3
0
 public int getLoginTimeout() throws SQLException {
   return ds.getLoginTimeout();
 }