@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;
   }
 }
Exemplo n.º 3
0
	public Ref getRef(String colName) throws SQLException {
		return rs.getRef(colName);
	}
Exemplo n.º 4
0
	public Ref getRef(int i) throws SQLException {
		return rs.getRef(i);
	}
Exemplo n.º 5
0
 public Ref getRef(int columnIndex) throws SQLException {
   return rs.getRef(columnIndex);
 }
Exemplo n.º 6
0
 public Ref getRef(String columnName) throws SQLException {
   return rs.getRef(findColumn(columnName));
 }
Exemplo n.º 7
0
 public Ref getRef(String arg0) throws SQLException {
   return current.getRef(arg0);
 }