コード例 #1
0
 public URL getURL(String parameterName) throws SQLException {
   checkOpen();
   try {
     return _stmt.getURL(parameterName);
   } catch (SQLException e) {
     handleException(e);
     return null;
   }
 }
コード例 #2
0
 public URL getURL(int parameterIndex) throws SQLException {
   checkOpen();
   try {
     return _stmt.getURL(parameterIndex);
   } catch (SQLException e) {
     handleException(e);
     return null;
   }
 }
コード例 #3
0
  /** The URL value */
  @Override
  public URL getURL(String name) throws SQLException {
    try {
      return _cstmt.getURL(name);
    } catch (SQLException e) {
      onSqlException(e);

      throw e;
    } catch (RuntimeException e) {
      onRuntimeException(e);

      throw e;
    }
  }
コード例 #4
0
 /** @see java.sql.CallableStatement#getURL(java.lang.String) */
 public URL getURL(String parameterName) throws SQLException {
   return original.getURL(parameterName);
 }
コード例 #5
0
 /** @see java.sql.CallableStatement#getURL(int) */
 public URL getURL(int parameterIndex) throws SQLException {
   return original.getURL(parameterIndex);
 }
コード例 #6
0
 public URL getURL(String parameterName) throws SQLException {
   return passThru.getURL(parameterName);
 }
コード例 #7
0
 public URL getURL(int parameterIndex) throws SQLException {
   return passThru.getURL(parameterIndex);
 }