diff --git a/driver/src/main/java/org/neo4j/driver/SessionConfig.java b/driver/src/main/java/org/neo4j/driver/SessionConfig.java index 026580e210..e79407a5ff 100644 --- a/driver/src/main/java/org/neo4j/driver/SessionConfig.java +++ b/driver/src/main/java/org/neo4j/driver/SessionConfig.java @@ -248,12 +248,13 @@ public Builder withDefaultAccessMode(AccessMode mode) { /** * Sets target database name for queries executed within session. *
- * This option has no explicit value by default, but it is recommended to set one if the target database is - * known in advance. This has the benefit of ensuring a consistent target database name throughout the session - * in a straightforward way and potentially simplifies driver logic as well as reduces network communication - * resulting in better performance. + * This option has no explicit value by default, as such it is recommended to set a value if the target database + * is known in advance. This has the benefit of ensuring a consistent target database name throughout the + * session in a straightforward way and potentially simplifies driver logic, which reduces network communication + * and might result in better performance. *
- * Usage of Cypher clauses like USE is not a replacement for this option. Driver sends Cypher to the server for processing. + * Cypher clauses such as USE are not a replacement for this option as Cypher is handled by the server and not + * the driver. *
* When no explicit name is set, the driver behavior depends on the connection URI scheme supplied to the driver * on instantiation and Bolt protocol version.