@@ -500,6 +500,18 @@ Oracledb Methods
500500 The ``user ``, ``password `` and ``dsn `` parameters are the same as for
501501 :meth: `oracledb.connect() `.
502502
503+ The ``pool_class `` parameter is expected to be a :ref: `ConnectionPool Object
504+ <connpool>` or a subclass of ConnectionPool.
505+
506+ The ``params `` parameter is expected to be of type :ref: `PoolParams
507+ <poolparam>` and contains parameters that are used to create the pool. If
508+ this parameter is not specified, the additional keyword arguments will be
509+ used to create an instance of PoolParams. If both the params parameter and
510+ the additional keyword parameters are specified, then an exception is
511+ raised. Note that if a ``dsn `` parameter is also specified, then the
512+ ``params `` parameter will be modified to contain the connection parameters
513+ found within ``dsn ``.
514+
503515 The ``min ``, ``max `` and ``increment `` parameters control pool growth
504516 behavior. A fixed pool size where ``min `` equals ``max `` is
505517 :ref: `recommended <connpoolsize >` to help prevent connection storms and to
@@ -561,18 +573,6 @@ Oracledb Methods
561573 negative value, then the ping functionality will be disabled. The default
562574 value is 60 seconds.
563575
564- The ``pool_class `` parameter is expected to be a :ref: `ConnectionPool Object
565- <connpool>` or a subclass of ConnectionPool.
566-
567- The ``params `` parameter is expected to be of type :ref: `PoolParams
568- <poolparam>` and contains parameters that are used to create the pool. If
569- this parameter is not specified, the additional keyword arguments will be
570- used to create an instance of PoolParams. If both the params parameter and
571- the additional keyword parameters are specified, then an exception is
572- raised. Note that if a ``dsn `` parameter is also specified, then the
573- ``params `` parameter will be modified to contain the connection parameters
574- found within ``dsn ``.
575-
576576 The ``proxy_user `` parameter is expected to be a string which indicates the
577577 name of the proxy user to connect to. If this value is not specified, it
578578 will be parsed out of user if user is in the form "user[proxy_user]". This
0 commit comments