Class OwlapiPreparedStatement
java.lang.Object
cz.cvut.kbss.ontodriver.owlapi.query.OwlapiStatement
cz.cvut.kbss.ontodriver.owlapi.query.OwlapiPreparedStatement
- All Implemented Interfaces:
- PreparedStatement,- Statement,- AutoCloseable
- 
Nested Class SummaryNested classes/interfaces inherited from interface cz.cvut.kbss.ontodriver.StatementStatement.StatementOntology
- 
Constructor SummaryConstructorsConstructorDescriptionOwlapiPreparedStatement(StatementExecutorFactory executorFactory, OwlapiConnection connection, String statement) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidClears the currently set parameters.Executes query represented by this statement.voidExecutes an update represented by this statement.voidSets value of binding with the specified name.Methods inherited from class cz.cvut.kbss.ontodriver.owlapi.query.OwlapiStatementclose, disableInference, executeQuery, executeUpdate, getStatementOntology, isInferenceDisabled, isOpen, useOntologyMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface cz.cvut.kbss.ontodriver.Statementclose, disableInference, executeQuery, executeUpdate, getStatementOntology, isInferenceDisabled, isOpen, useOntology
- 
Constructor Details- 
OwlapiPreparedStatementpublic OwlapiPreparedStatement(StatementExecutorFactory executorFactory, OwlapiConnection connection, String statement) 
 
- 
- 
Method Details- 
executeQueryDescription copied from interface:PreparedStatementExecutes query represented by this statement.- Specified by:
- executeQueryin interface- PreparedStatement
- Returns:
- ResultSet of the query
- Throws:
- OntoDriverException- If an ontology access error occurs
 
- 
executeUpdateDescription copied from interface:PreparedStatementExecutes an update represented by this statement.- Specified by:
- executeUpdatein interface- PreparedStatement
- Throws:
- OntoDriverException- If an ontology access error occurs
 
- 
setObjectDescription copied from interface:PreparedStatementSets value of binding with the specified name.- Specified by:
- setObjectin interface- PreparedStatement
- Parameters:
- binding- Binding name
- value- The value of the parameter
 
- 
clearParameterspublic void clearParameters()Description copied from interface:PreparedStatementClears the currently set parameters.- Specified by:
- clearParametersin interface- PreparedStatement
 
 
-