Could we get an explanation of how to use internal TOracleSession pooling in an ISAPI dll? Some questions I have are
1) In general how does the TOracleSession pooling work? I've read the help on it, but would like to know some of the internal workings.
2) In an ISAPI dll, should a global TOracleSession be created with the pooling set spInternal, or just create a session for each web session?
3) How many connections are created in the pool?
4) If 100 users connect, then drop off, are there 100 open connections in the pool?
5) Do unused connections time out?
6) Are connections created in batchs? For example if there are 3 in use connections, and a 4th user logs on, how many connections are created? Just one? Or a batch of connections, with all unused except one begin allocated to the new user?
7) Any other general ideas that explain how the pooling mechanism works would be good...
1) In general how does the TOracleSession pooling work? I've read the help on it, but would like to know some of the internal workings.
2) In an ISAPI dll, should a global TOracleSession be created with the pooling set spInternal, or just create a session for each web session?
3) How many connections are created in the pool?
4) If 100 users connect, then drop off, are there 100 open connections in the pool?
5) Do unused connections time out?
6) Are connections created in batchs? For example if there are 3 in use connections, and a 4th user logs on, how many connections are created? Just one? Or a batch of connections, with all unused except one begin allocated to the new user?
7) Any other general ideas that explain how the pooling mechanism works would be good...