我正在开发一款依靠SPARQL获取本地音轨信息的音乐播放器应用,并且遇到了一些麻烦。
我正在运行Fedora 21,并且通过grilo查询数据库(Tracker)(即,我编写原始SPARQL查询,并且grilo使用这些查询与数据库通信并发回任何结果)。
基本上,每当我尝试使用REPLACE
时,我都会得到以下内容:
Grilo-WARNING : [tracker-source-request] grl-tracker-source-api.c:500: Could not execute sparql query id=1: 1.273: syntax error, expected primary expression
当我尝试使用fn:replace
时,我得到:
Grilo-WARNING : [tracker-source-request] grl-tracker-source-api.c:500: Could not execute sparql query id=1: 1.284: syntax error, Unknown function
供参考,这是我尝试使用REPLACE
的上下文:
SELECT DISTINCT
rdf:type(?album)
tracker:id(?album) AS id
(
SELECT
nmm:artistName(?artist)
WHERE {
?album nmm:albumArtist ?artist
}
LIMIT 1
) AS artist
REPLACE(nie:title(?album)^^xsd:string, "hello", "goodbye") AS title
nie:title(?album) AS album
[more SPARQL gobbldygook follows]
如果您想了解其他查询的外观,view the whole file。
最终目标是使用REPLACE
从相册/艺术家名称中删除标点符号以进行排序。
谢谢!
答案 0 :(得分:0)
您还没有给我们一个最小的例子,但至少部分问题在于尝试将属性视为函数,无论是在查询中还是在投影变量中。你写的不像:
select rdf:type(?album) where { ... }
为?album 选择 rdf:type 属性的值。相反,你做:
select ?type where { ?album rdf:type ?type }
你向我们展示的代码块可能应该是:
select distinct ?type ?id (?title as ?albumTitle)
where {
?album rdf:type ?type ;
tracker:id ?id ;
nie:title ?title ;
nmm:albumArtist ?artist .
}
很多人会选择价值观。现在,要用“再见”替换标题中“hello”的出现,你可以这样做:
select distinct
?type
?id
(replace(?title,"hello","goodbye") as ?albumTitle)
where {
?album rdf:type ?type ;
tracker:id ?id ;
nie:title ?title ;
nmm:albumArtist ?artist .
}
现在,端点可能支持其他功能。因此,例如,端点可能有一个函数 nie:title ,您传递IRI并获得标题。如果是这种情况,您仍需要使用正确的SPARQL语法,并执行以下操作:
bind(nie:title(?album) as ?title)
查询中的或
select ... (nie:title(?album) as ?title) ... where { ... }
在查询中。 nie:title(...)as?title 周围的括号是强制性的。 (某些端点可能不会强制执行所有语法,但规范中的是。)
答案 1 :(得分:0)
Tracker尚未支持此功能。
最近有一个补丁添加到bugzilla中以实现此功能。我们应该在1.4.0(稳定版)或以后的不稳定版本(如1.3.5)中看到这一点。