cleanair4me
Technical User
- May 16, 2008
- 61
I use Oracle 9i for my database back end working with ColdFusion web applications.
I generally monitor the web application's database connections in SQL Plus using v$session such as:
ColdFusion is suppose to automatically close the connection in its CFQuery tag.
But I am not sure if ColdFusion closes the connection right away after someone uses (read or write) a ColdFusion web site.
For example I usually check the above v$session sql for about 20 to 30 minutes consistently after the user exits the web application and it shows this output:
Does the JDBC Connect Client program mean the connection is still open?
I generally monitor the web application's database connections in SQL Plus using v$session such as:
Code:
select username,program from v$session where username = 'MY_SCHEMA_NAME'
But I am not sure if ColdFusion closes the connection right away after someone uses (read or write) a ColdFusion web site.
For example I usually check the above v$session sql for about 20 to 30 minutes consistently after the user exits the web application and it shows this output:
Code:
username program
MY_SCHEMA_NAME JDBC Connect Client
Does the JDBC Connect Client program mean the connection is still open?