@@ -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+------------------------+---------------------------------------------------------------------------------------------------------------------------------------+
@@ -799,9 +799,8 @@ For example:
799799 self .driver.close()
800800
801801 Connection details held by the :class: `neo4j.Driver ` are immutable.
802- Therefore if, for example, a password is changed, a replacement :class: `neo4j.Driver ` object must be created.
803- More than one :class: `.Driver ` may be required if connections to multiple remotes, or connections as multiple users, are required,
804- unless when using impersonation (:ref: `impersonated-user-ref `).
802+ Therefore if, for example, the server URI is changed, a replacement :class: `neo4j.Driver ` object must be created.
803+ More than one :class: `.Driver ` may be required if connections to multiple remotes.
805804
806805:class: `neo4j.Driver ` objects are thread-safe but cannot be shared across processes.
807806Therefore, ``multithreading `` should generally be preferred over ``multiprocessing `` for parallel database access.
@@ -959,7 +958,8 @@ more information.
959958 :class: `neo4j.Bookmarks ` object instead.
960959
961960.. versionchanged :: 6.0
962- Only accepts :class: `neo4j.Bookmarks ` objects or :data: `None `.
961+ No longer accepts an iterable of strings.
962+ Pass a :class: `neo4j.Bookmarks ` objects or :data: `None ` instead.
963963
964964
965965.. _database-ref :
@@ -980,7 +980,7 @@ Name of the database to query.
980980 straightforward way and potentially simplifies driver logic as well as
981981 reduces network communication resulting in better performance.
982982
983- Usage of Cypher clauses like `USE ` is not a replacement for this option.
983+ Usage of Cypher clauses like `` USE ` ` is not a replacement for this option.
984984 The driver does not parse any Cypher.
985985
986986When no explicit name is set, the driver behavior depends on the connection
@@ -1378,7 +1378,7 @@ Example:
13781378
13791379 .. _managed-transactions-ref :
13801380
1381- Managed Transactions (` transaction functions ` )
1381+ Managed Transactions (* transaction functions * )
13821382==============================================
13831383Transaction functions are the most powerful form of transaction, providing access mode override and retry capabilities.
13841384
@@ -2001,7 +2001,7 @@ Server-side errors
20012001
20022002.. autoexception :: neo4j.exceptions.Neo4jError()
20032003 :show-inheritance:
2004- :members: message, code, is_retriable, is_retryable
2004+ :members: message, code, is_retryable
20052005
20062006.. autoexception :: neo4j.exceptions.ClientError()
20072007 :show-inheritance:
0 commit comments