RDFazer没有显示结果(查询中的语法错误)

时间:2018-08-20 14:52:37

标签: sparql rdf ontology virtuoso

这是我第一次研究本体。 我下载了Virtuoso,也下载了RDFazer,它帮助我用ESCO本体..找到匹配项。 这是默认的坐在JSON文件(包括查询语句),我根本没有更改它:

try
{
    // DB actions ....
}
catch (SQLiteException ex)
{
    // This is what i want because is clear and easy to read
    if (ex.ResultCode == SQLiteErrorCode.Constraint_Unique)
    {
        Debug.Write("SQLiteError: " + ex.Message);
    }

    // This works, but is not nice
    if (ex.ResultCde == SQLiteErrorCode.Constraint && ex.Message.Contains("UNIQUE"))
    {
        Debug.Write("SQLiteError: " + ex.Message);
    }

    throw ex;
}

}

我试图查询多次。我现在没有显示此图所示的语法错误(抱歉,我无法复制该错误,我只能截图)

enter image description here 有什么办法可以解决此错误?

非常感谢。

1 个答案:

答案 0 :(得分:0)

解决方案是将显然较旧的Virtuoso更新到当前版本。