Final reminder: ApacheCon North America call for presentations closing soon

2022-05-19 Thread Rich Bowen
[Note: You're receiving this because you are subscribed to one or more Apache Software Foundation project mailing lists.] This is your final reminder that the Call for Presetations for ApacheCon North America 2022 will close at 00:01 GMT on Monday, May 23rd, 2022. Please don't wait! Get your talk

xsd:DateTime not working

2022-05-19 Thread Erich Bremer
I'm trying to do a sparql update on a Model in Jena. The below query, against Virtuoso will create "2014-06-05T10:10:10" correctly, but I get null using Jena's SPARQL. PREFIX xsd: select * where {graph ?g {?s ?p ?o} bind (xsd:DateTime("2014-06-05T10:10:10")

Re: xsd:DateTime not working

2022-05-19 Thread Martynas Jusevičius
Works for me: PREFIX xsd: select * where { bind (xsd:dateTime("2014-06-05T10:10:10+05:00") as ?asDate) }

Re: xsd:DateTime not working

2022-05-19 Thread Erich Bremer
Kill me now. :-( Thanks Martynas! - Erich On Thu, May 19, 2022 at 10:37 AM Martynas Jusevičius wrote: > Works for me: > > PREFIX xsd: > select * where { > bind (xsd:dateTime("2014-06-05T10:10:10+05:00") as ?asDate) > } > > >