@@ -82,13 +82,13 @@ Each supported scheme maps to a particular :class:`neo4j.Driver` subclass that i
8282+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
8383| URI Scheme | Driver Object and Setting |
8484+========================+=======================================================================================================================================+
85- | bolt | :ref: `bolt-driver-ref ` with no encryption. |
85+ | bolt | :ref: `bolt-driver-ref ` with no encryption or with custom encryption configuration, see :ref: ` driver-configuration-ref `. |
8686+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
8787| bolt+ssc | :ref: `bolt-driver-ref ` with encryption (accepts self signed certificates). |
8888+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
8989| bolt+s | :ref: `bolt-driver-ref ` with encryption (accepts only certificates signed by a certificate authority), full certificate checks. |
9090+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
91- | neo4j | :ref: `neo4j-driver-ref ` with no encryption. |
91+ | neo4j | :ref: `neo4j-driver-ref ` with no encryption or with custom encryption configuration, see :ref: ` driver-configuration-ref `. |
9292+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
9393| neo4j+ssc | :ref: `neo4j-driver-ref ` with encryption (accepts self signed certificates). |
9494+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
@@ -804,9 +804,8 @@ For example:
804804 self .driver.close()
805805
806806 Connection details held by the :class: `neo4j.Driver ` are immutable.
807- Therefore if, for example, a password is changed, a replacement :class: `neo4j.Driver ` object must be created.
808- More than one :class: `.Driver ` may be required if connections to multiple remotes, or connections as multiple users, are required,
809- unless when using impersonation (:ref: `impersonated-user-ref `).
807+ Therefore if, for example, the server URI is changed, a replacement :class: `neo4j.Driver ` object must be created.
808+ More than one :class: `.Driver ` may be required if connections to multiple remotes.
810809
811810:class: `neo4j.Driver ` objects are thread-safe but cannot be shared across processes.
812811Therefore, ``multithreading `` should generally be preferred over ``multiprocessing `` for parallel database access.
@@ -964,7 +963,8 @@ more information.
964963 :class: `neo4j.Bookmarks ` object instead.
965964
966965.. versionchanged :: 6.0
967- Only accepts :class: `neo4j.Bookmarks ` objects or :data: `None `.
966+ No longer accepts an iterable of strings.
967+ Pass a :class: `neo4j.Bookmarks ` objects or :data: `None ` instead.
968968
969969
970970.. _database-ref :
@@ -985,7 +985,7 @@ Name of the database to query.
985985 straightforward way and potentially simplifies driver logic as well as
986986 reduces network communication resulting in better performance.
987987
988- Usage of Cypher clauses like `USE ` is not a replacement for this option.
988+ Usage of Cypher clauses like `` USE ` ` is not a replacement for this option.
989989 The driver does not parse any Cypher.
990990
991991When no explicit name is set, the driver behavior depends on the connection
@@ -1384,7 +1384,7 @@ Example:
13841384
13851385 .. _managed-transactions-ref :
13861386
1387- Managed Transactions (` transaction functions ` )
1387+ Managed Transactions (* transaction functions * )
13881388==============================================
13891389Transaction functions are the most powerful form of transaction, providing access mode override and retry capabilities.
13901390
0 commit comments