Hi,

If I have the following procedure

create procedure fullname( in uri varchar ) returns varchar {
  for ( sparql select bif:concat( ?name, ' ', ?lastname ) as ?fullname
        where { ?:uri foaf:name ?name ; foaf:lastName ?lastname } )
  do { return fullname ; }
};

I know I can do the following:

sparql select  (sql:fullname( ?person )) as ?fullname  where { ...  }

But, any plans to implement the following way of calling the function?

sparql select * where { <urn:someperson> sql:fullname ?fullname  }

Regards,
A

-- 
Aldo Bucchi
@aldonline
skype:aldo.bucchi
http://aldobucchi.com/

PRIVILEGED AND CONFIDENTIAL INFORMATION
This message is only for the use of the individual or entity to which it is
addressed and may contain information that is privileged and confidential. If
you are not the intended recipient, please do not distribute or copy this
communication, by e-mail or otherwise. Instead, please notify us immediately by
return e-mail.

Reply via email to