vote up 0 vote down star

I am creating a query form and let the user to enter the keyword from the form. Then the query form will bring to the next page where I carry the variable created in the query form to the next page. The excerpt code for the new page is as folows:

//received variable
$abc1=$_POST['querykeyword'];

$querystring = '
Prefix try <http://www.semanticweb.org/ontologies/2009/5/test.owl#>
SELECT ?name ?age
WHERE
  {     ?url try:has-name ${"abc1"} ?name 
        ?url try:has-age ?age }';

However, it did not give the output. Can anybody help?

flag
I think to get more helpful answers you will need to provide us a sample of the RDF you are querying, and the value of $abc1 you are using to test. You might also want to specify (if you know) which RDF storage engine and/or SPARQL query engine you are using. – tialaramex Jul 8 at 12:01

2 Answers

vote up 1 vote down

Both the query in the question and laalto's answer aren't valid SPARQL, but laalto is getting closer.

It seems like Ismet wants to replace the ?name variable with a fixed value. If so, the ?name variable must be removed from the SELECT and the query body, or it shouldn't parse and certainly won't return the desired results. The PHP used also has the wrong escaping for a T_VARIABLE, the PREFIX was missing a colon required by SPARQL syntax rules.

Try:

  $querystring = "
  PREFIX try: <http://www.semanticweb.org/ontologies/2009/5/test.owl#>
  SELECT ?age
  WHERE {
    ?url try:has-name \"${abc1}\" .
    ?url try:has-age ?age
  }";

This should at least emit a syntactically correct SPARQL query which contains your variable.

link|flag
@tialaramex: Thanks for noticing, revised my answer now. – laalto Jul 8 at 10:04
I tried it but i still not give me the output. – Ismet Jul 8 at 11:50
Have you tried manually executing your desired query to check that it actually works? – tialaramex Jul 8 at 12:06
I tried the query manualy and it works. WIll send to you the file. – Ismet Jul 8 at 12:09
1  
You could use pastebin.com and write the resulting URLs into a comment here. Since a manual query works, I suppose the problem must be with the PHP, but I can't see how. So maybe include a snippet of PHP that doesn't work, as well as the text of the manual query that worked. Use copy-paste to avoid transcription errors. – tialaramex Jul 8 at 13:00
show 1 more comment
vote up 0 vote down

There seems to be a number of syntax issues in your query. try:has-name property probably has a literal domain. So you should put your literal in quotes. There's also a . missing between the graph patterns, and some other quirks, some of which are related to stackoverflow's formatting of non-code text (fixed by reformatting the question). However, try this:

$querystring = '
  PREFIX try: <http://www.semanticweb.org/ontologies/2009/5/test.owl#>
  SELECT ?name ?age {
    ?url try:has-name ?name .
    ?url try:has-age ?age .
    FILTER(?name = \"${"abc1"}\")
  }';

The PREFIX statement declares the try namespace prefix. Then there's the SELECT clause that selects two variables nameand age. Note that WHERE is optional. The two graph patterns select triples that match both patterns, and the FILTER retains only those triples that satisfy the name matching criteria. @tialaramex's solution would probably also work for you since you already know the name. I'm editing this to be slightly different solution, in case you want to use more complex filtering operations in the future.

link|flag
@Prefix is a Turtle feature. This is SPARQL. It's just PREFIX in SPARQL, not @Prefix. – tialaramex Jul 8 at 10:43
@tialaramex: Thanks again. Fixed. Will parse my queries next time :) – laalto Jul 8 at 11:07
I tried this way, however the result shown as 'no match' in the browser. But I know it should give me the name and age in the HTML table. – Ismet Jul 8 at 11:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.