Re: [sqlalchemy] Oracle Sqalchemy connection pooling

2020-05-12 Thread Mike Bayer
you can query for active connections in Oracle with the V$SESSION view: http://www.dba-oracle.com/concepts/query_active_users_v$session.htm https://stackoverflow.com/a/199567/34549 you can get answers like these from googling or stackoverflow On Tue, May 12, 2020, at 3:01 AM, Oğuzhan Kaya

[sqlalchemy] Oracle Sqalchemy connection pooling

2020-05-12 Thread Oğuzhan Kaya
Hello, I made a connection with sqlalchemy connection pooling poolclass QueuePool. But How can I check in Oracle Sql developer? Connection pooling is created or not? Thank you -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example