Package org.apache.jena.jdbc.metadata.results

Examples of org.apache.jena.jdbc.metadata.results.MetaResultSet


        return " ";
    }

    @Override
    public ResultSet getImportedKeys(String arg0, String arg1, String arg2) throws SQLException {
        return new MetaResultSet(MetadataSchema.getImportedKeyColumns());
    }
View Full Code Here


        return new MetaResultSet(MetadataSchema.getImportedKeyColumns());
    }

    @Override
    public ResultSet getIndexInfo(String arg0, String arg1, String arg2, boolean arg3, boolean arg4) throws SQLException {
        return new MetaResultSet(MetadataSchema.getIndexInfoColumns());
    }
View Full Code Here

        return StrUtils.strjoin(",", SPARQL_NUMERIC_FUNCTIONS);
    }

    @Override
    public ResultSet getPrimaryKeys(String arg0, String arg1, String arg2) throws SQLException {
        return new MetaResultSet(MetadataSchema.getPrimaryKeyColumns());
    }
View Full Code Here

        return new MetaResultSet(MetadataSchema.getPrimaryKeyColumns());
    }

    @Override
    public ResultSet getProcedureColumns(String arg0, String arg1, String arg2, String arg3) throws SQLException {
        return new MetaResultSet(MetadataSchema.getProcedureColumnColumns());
    }
View Full Code Here

        return null;
    }

    @Override
    public ResultSet getProcedures(String arg0, String arg1, String arg2) throws SQLException {
        return new MetaResultSet(MetadataSchema.getProcedureColumns());
    }
View Full Code Here

        return SCHEMA_TERM;
    }

    @Override
    public ResultSet getSchemas() throws SQLException {
        return new MetaResultSet(MetadataSchema.getSchemaColumns(), new Object[][] { { DEFAULT_SCHEMA, DEFAULT_CATALOG } });
    }
View Full Code Here

    public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException {
        if (DEFAULT_CATALOG.equals(catalog)) {
            if (schemaPattern == null || DEFAULT_SCHEMA.equals(schemaPattern)) {
                return this.getSchemas();
            } else {
                return new MetaResultSet(MetadataSchema.getSchemaColumns());
            }
        } else {
            return new MetaResultSet(MetadataSchema.getSchemaColumns());
        }
    }
View Full Code Here

        return StrUtils.strjoin(",", SPARQL_STR_FUNCTIONS);
    }

    @Override
    public ResultSet getSuperTables(String arg0, String arg1, String arg2) throws SQLException {
        return new MetaResultSet(MetadataSchema.getSuperTableColumns());
    }
View Full Code Here

        return new MetaResultSet(MetadataSchema.getSuperTableColumns());
    }

    @Override
    public ResultSet getSuperTypes(String arg0, String arg1, String arg2) throws SQLException {
        return new MetaResultSet(MetadataSchema.getSuperTypeColumns());
    }
View Full Code Here

        return "";
    }

    @Override
    public ResultSet getTablePrivileges(String arg0, String arg1, String arg2) throws SQLException {
        return new MetaResultSet(MetadataSchema.getTablePrivilegeColumns());
    }
View Full Code Here

TOP

Related Classes of org.apache.jena.jdbc.metadata.results.MetaResultSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.