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: <http://www.w3.org/2001/XMLSchema#>
select * where {graph ?g {?s ?p ?o}
  bind (xsd:DateTime("2014-06-05T10:10:10") as ?asDate)
}
limit 3

Even changing the source string to "2014-06-05T10:10:10+0500", will still
yield nothing from the Jena conversion.

   - Erich

Reply via email to