Uses of Interface
com.graphdbapi.driver.v1.StatementResult
-
Packages that use StatementResult Package Description com.graphdbapi.driver com.graphdbapi.driver.group -
-
Uses of StatementResult in com.graphdbapi.driver
Methods in com.graphdbapi.driver that return StatementResult Modifier and Type Method Description StatementResult
Graph. executeCypher(String cypher, Map<String,Value> parameters)
执行cypher查询。StatementResult
Graph. executeProcedure(String procedureName, Object... inputParams)
通过bolt执行procedure方法StatementResult
Graph. executeQuery(String cypher)
执行cypher查询。默认超时时间7200秒(包括查询结果迭代时间),如果查询需要长时间执行或结果集过大,建议使用包含timeout的重载方法指定合适的超时时间。StatementResult
Graph. executeQuery(String cypher, int defLimit)
执行cypher查询。StatementResult
Graph. executeQuery(String cypher, long timeout)
执行cypher查询。StatementResult
Graph. executeQuery(String cypher, long timeout, int defLimit)
执行cypher查询。 -
Uses of StatementResult in com.graphdbapi.driver.group
Methods in com.graphdbapi.driver.group that return StatementResult Modifier and Type Method Description StatementResult
GraphGroup. executeProcedure(String procedureName, Object... inputParams)
通过bolt执行procedure方法
-