dreampolice
Technical User
I have Java Servlets and JSP working great with Oracle 9i database using JDBC Thin Driver in our Apache Tomcat Container sitting on Windows 2000 server.
Everytime I go into an Oracle record with my Java front I notice that I am opening a program called JDBC Thin Client.
Basically I am testing it out by opening records on the Front end web page and then checking in SQL Plus what is going on in the database.
I use this command:
select username, program, status, server from v$session where username = 'jones';
The issue is the JDBC Thin Client Program seems to not disappear even though I am closing my database connections in a Java Finally block.
Here is how the output looks in SQL Plus if I open 3 different records (open record, then close the record and then open up another record) in my Java web page:
It shows JDBC Thin Client program running 3 times.
Is the JDBC Thin Client program draining resources from our Oracle 9i database even if the status says inactive? The JDBC Thin Client Programs seem to not go away.
Please advise.
Everytime I go into an Oracle record with my Java front I notice that I am opening a program called JDBC Thin Client.
Basically I am testing it out by opening records on the Front end web page and then checking in SQL Plus what is going on in the database.
I use this command:
select username, program, status, server from v$session where username = 'jones';
The issue is the JDBC Thin Client Program seems to not disappear even though I am closing my database connections in a Java Finally block.
Here is how the output looks in SQL Plus if I open 3 different records (open record, then close the record and then open up another record) in my Java web page:
Code:
Username Program Status Server
jones JDBC Thin Client Inactive Dedicated
jones sqlplus.exe Active Dedicated
jones JDBC Thin Client Inactive Dedicated
jones JDBC Thin Client Inactive Dedicated
It shows JDBC Thin Client program running 3 times.
Is the JDBC Thin Client program draining resources from our Oracle 9i database even if the status says inactive? The JDBC Thin Client Programs seem to not go away.
Please advise.