All,
I successfully inserted the data below, with *explicit datatypes* through
the Sparql Endpoint (WebBrowser), I also tried using the iSQL and Conductor
Importer
insert data into <teste_datatype>
> {
> <subject> <predicate> "string",
> "string"^^xsd:string,
> "string"^^xsd:String,
> "1"^^xsd:int,
> "1"^^xsd:integer,
> 2,
> "2"^^xsd:int.
> }
>
But, after the following query execution
select *
> from <teste_datatype>
> where {?s ?p ?o}
>
I got these triples
s p o subject predicate "1"^^<http://www.w3.org/2001/XMLSchema#int>
subject predicate 2 subject predicate "string"^^<
http://www.w3.org/2001/XMLSchema#string> subject predicate "string"^^<
http://www.w3.org/2001/XMLSchema#String> subject predicate string
I would expected something like
s p o subject predicate 1 subject predicate 2 subject predicate string
Is this a bug? or am I doing something wrong?
Best Regards,
Percy