Hi, The book describes connection pooling and when new sessions are created, but when are they closed ? If I do not have connection pooling turned on, will the session close after each request ? I am trying to determine if I can make use of dynamically created volatile tables in the database. The key is that they only persist and can be accessed within a database session.
I thought I would try setting my connection pool to 1 to only get a single session, but will it stay open for later requests ? Note, user concurrency is not an issue for this scenario. Thanks

