Aklakan commented on issue #2580:
URL: https://github.com/apache/jena/issues/2580#issuecomment-2227472688

   There is also `RDFConnectionRemoteBuilder.parseCheckSPARQL`:
   
   ```java
       /**
        * Set the flag for whether to check SPARQL queries and SPARQL updates 
provided as a string.
        */
       public RDFConnectionRemoteBuilder parseCheckSPARQL(boolean parseCheck) {
           builder.parseCheckSPARQL(parseCheck);
           return this;
       }
   ```
   
   However, the setting is not considered in `ExecHTTPBuilder.query(String)` 
which suggest using `queryString(String)` instead. One flexible way to resolve 
this inconsistency is for `query()` to honor the `parseCheck` flag, and 
`queryString()` to always defer parsing.
   
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to