• @thekhuc

    • So I sit here looking at the bright and sunny sky and thinking to myself "how sad!" 5 days ago
    • It's amazing how much more focus a half closed door provides. Now my eyes can't wander into infinity. 6 days ago
    • spring is really here. no jacket needed. 1 week ago
    • in the mood for some tvb music 1 week ago
    • Installed pgAdmin PostgreSQL - an Open Source database. Needed for Decision Guidance Systems course. 2 weeks ago
    • Application window closed without a glitch. That was such a relief. 4 weeks ago
    • Hunting down application bugs but there are so many. This will take a long time. 1 month ago
    • Back in the office. 1 month ago
    • NO CLASS TOMORROW! :) 1 month ago
    • Reading up on Center for Smart Power Grids. Looking for ideas for a paper. 1 month ago

SPARQL for the Pragmatic Ontologist

SPARQL

SQL of RDF
XSLT of RDF
JavaDoc of RDF
Lint of RDF
Unit Test of RDF

SPARQL is READ-ONLY!
Jena ARQ Extensions (SPARQL 2 Candidates)
1st Query: Find the country names
SELECT ?country ?name
WHERE {
?country rdf:type country:Country .
?country country:name ?name
}
OR
SELECT ?country ?name
WHERE {
?country a country:Country .
?country country:name ?name
}
OR
SELECT ?country ?name {
?country rdf:type country:Country ;
country:name ?name
}
OR
SELECT ?country ?name {
?country country:name ?name
}
2nd Query: Find the [...]