public JenaPreparedStatement(String sparql, JenaConnection connection, int type, int fetchDir, int fetchSize,
int holdability, boolean autoCommit, int transactionLevel) throws SQLException {
super(connection, type, fetchDir, fetchSize, holdability, autoCommit, transactionLevel);
this.sparqlStr.setCommandText(sparql);
this.paramMetadata = new JenaParameterMetadata(this.sparqlStr);
}