public Object getObject()

in src/main/java/com/aliyun/ha3engine/jdbc/Ha3ResultSet.java [752:757]


    public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
        if (map == null || map.isEmpty()) {
            return getObject(columnLabel);
        }
        throw new SQLFeatureNotSupportedException("getObject with non-empty Map not supported");
    }