
|
If you were logged in you would be able to see more operations.
|
|
Sesame
Created: 06/May/04 12:27 PM
Updated: 17/Jun/04 02:06 PM
|
|
| Component/s: |
RDQL
|
| Affects Version/s: |
1.0.1,
1.0
|
| Fix Version/s: |
1.0.2
|
|
According to the most recent RDQL spect (http://www.w3.org/Submission/2004/SUBM-RDQL-20040109/ ), QNames in triple patterns should not be surrounded by angle brackets.
For example, the following should be a legal query:
SELECT ?family , ?given
WHERE (?vcard vcard:FN "John Smith")
(?vcard vcard:N ?name)
(?name vcard:Family ?family)
(?name vcard:Given ?given)
USING vcard FOR <http://www.w3.org/2001/vcard-rdf/3.0#>
Sesame's RDQL engine still requires QNames to be surrounded by angle brackets (e.g. <vcard:FN>, <vcard:N>, etc.).
|
|
Fix checked in on release branch: it is no longer required (but still allowed, for backward compatibility) to surround QNames with angle brackets.
|
|