示例#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();
  }
示例#2
0
 public int getLoginTimeout() throws SQLException {
   return realDataSource.getLoginTimeout();
 }
示例#3
0
 public int getLoginTimeout() throws SQLException {
   return ds.getLoginTimeout();
 }