-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rr:parentTriplesMap result in error when rr:child is a literal #17
Comments
Hi, Thank you for your commit. However, when I put the new release to work, the following message appear: This is R2RML Parser 0.7-alpha. Run with -h for help on options. The same mappings in before version, works well. The log file is in attach. Best regards, |
Hi Valeria, I believe commit 1b2e822 fixes this. Can you please verify? |
Hi Nikolaos, Unfortulatly the problem is not fix yet. I have done the sollowing steps:
In attachment is my files. On Sat, Nov 21, 2015 at 9:44 AM, Nikolaos Konstantinou <
|
Strange... I don't get any exceptions in mine... Please send me again the status.log after you set default.verbose=true in r2rml.properties Also, try maven build -> clean package Thanks |
Hi, I did a maven clean and built the project again. After I changed the My files are in attachment. Thanks. On Mon, Nov 23, 2015 at 11:34 AM, Nikolaos Konstantinou <
|
I believe the latest commit (6a28b95) fixes this issue. It worked for me locally; |
I tested and I seems fine now. Thanks. |
Hi,
When I trie pick up a uri from another r2rml mapping give me a error:
I thing the problem is the rr:child in the rr:parentTripleMap is a string and the query to pick up the tuple in the database is not properly formed.
Example of my mapping:
map:Organization
rr:logicalTable [ rr:sqlQuery """
SELECT OrgID AS ID, Homepage AS foaf_homepage, Name AS rdfs_label, Address AS vcard_ADR, Location AS vcard_ADR2, Postcode AS vcard_ADR3, Country AS vcard_ADR4
FROM organizations
""" ];
when the R2RML-parser makes the query to the database, for example:
SELECT Address AS ID,
Location AS ID2,
Postcode AS ID3,
Country AS ID4,
Country AS vcard_country,
Address AS vcard_street,
Location AS vcard_locality,
Postcode AS vcard_pcode
FROM organizations
WHERE Address = 4676 Admirality Way
The query returns an error because there is not any ' ' in 4676 Admirality Way.
I hope this problem can be solved soon,
Best regards,
Valéria
The text was updated successfully, but these errors were encountered: