/* * (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(); }
public PrintWriter getLogWriter() throws SQLException { return realDataSource.getLogWriter(); }
public PrintWriter getLogWriter() throws SQLException { return ds.getLogWriter(); }