Cursor |
DataStoreConnection.createCursor(Query query,
java.util.Map<java.lang.String,java.lang.String> compilationParameters) |
Creates a cursor over the results of the given query with the default fetch window size of 100.
|
Cursor |
DataStoreConnection.createCursor(Query query,
java.util.Map<java.lang.String,java.lang.String> compilationParameters,
int fetchWindowSize) |
Creates a cursor over the results of the given query.
|
StatementResult |
DataStoreConnection.evaluateQuery(Query query,
java.util.Map<java.lang.String,java.lang.String> compilationParameters,
QueryAnswerMonitor queryAnswerMonitor) |
Evaluates a query and calls the supplied QueryAnswerMonitor instance for each tuple in the result.
|
StatementResult |
DataStoreConnection.evaluateStatement(Prefixes prefixes,
Query statement,
java.util.Map<java.lang.String,java.lang.String> compilationParameters,
java.io.File file,
java.lang.String queryAnswerFormatName) |
Evaluates a statement and serialises the result to the supplied file using the specified format.
|
StatementResult |
DataStoreConnection.evaluateStatement(Prefixes prefixes,
Query statement,
java.util.Map<java.lang.String,java.lang.String> compilationParameters,
java.io.OutputStream outputStream,
java.lang.String queryAnswerFormatName) |
Evaluates a statement and serialises the result to the supplied output stream using the specified format.
|