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

    return datasource.getLogWriter();
  }
示例#2
0
 public PrintWriter getLogWriter() throws SQLException {
   return realDataSource.getLogWriter();
 }
示例#3
0
 public PrintWriter getLogWriter() throws SQLException {
   return ds.getLogWriter();
 }