286287288289290291292293294295296
throw e; } catch (SQLException e) { SQLClientInfoException t = new SQLClientInfoException(); t.initCause(e); throw t; } } catch (SQLException e) {
293294295296297298299300301302303
} } catch (SQLException e) { SQLClientInfoException t = new SQLClientInfoException(); t.initCause(e); throw t; } finally { unlock();
326327328329330331332333334335336
333334335336337338339340341342343
29062907290829092910291129122913291429152916
public void setClientInfo(String name, String value) throws SQLClientInfoException { SQLClientInfoException ex = new SQLClientInfoException(); ex.initCause(Util.notSupported()); throw ex; } //#endif JAVA6
29562957295829592960296129622963296429652966
} SQLClientInfoException ex = new SQLClientInfoException(); if (this.isClosed) { ex.initCause(Util.connectionClosedException()); } else { ex.initCause(Util.notSupported()); } throw ex;
29582959296029612962296329642965296629672968
SQLClientInfoException ex = new SQLClientInfoException(); if (this.isClosed) { ex.initCause(Util.connectionClosedException()); } else { ex.initCause(Util.notSupported()); } throw ex; }
29842985298629872988298929902991299229932994
public void setClientInfo(String name, String value) throws SQLClientInfoException { SQLClientInfoException ex = new SQLClientInfoException(); ex.initCause(JDBCUtil.notSupported()); throw ex; } //#endif JAVA6
30343035303630373038303930403041304230433044
} SQLClientInfoException ex = new SQLClientInfoException(); if (this.isClosed) { ex.initCause(JDBCUtil.connectionClosedException()); } else { ex.initCause(JDBCUtil.notSupported()); } throw ex;
30363037303830393040304130423043304430453046
SQLClientInfoException ex = new SQLClientInfoException(); if (this.isClosed) { ex.initCause(JDBCUtil.connectionClosedException()); } else { ex.initCause(JDBCUtil.notSupported()); } throw ex; }