@Override
 public Ref getRef(String colName) throws SQLException {
   try {
     return _res.getRef(colName);
   } catch (SQLException e) {
     handleException(e);
     return null;
   }
 }
 @Override
 public Ref getRef(int i) throws SQLException {
   try {
     return _res.getRef(i);
   } catch (SQLException e) {
     handleException(e);
     return null;
   }
 }
	public Ref getRef(String colName) throws SQLException {
		return rs.getRef(colName);
	}
	public Ref getRef(int i) throws SQLException {
		return rs.getRef(i);
	}
Beispiel #5
0
 public Ref getRef(int columnIndex) throws SQLException {
   return rs.getRef(columnIndex);
 }
Beispiel #6
0
 public Ref getRef(String columnName) throws SQLException {
   return rs.getRef(findColumn(columnName));
 }
 public Ref getRef(String arg0) throws SQLException {
   return current.getRef(arg0);
 }