| Author |
access
|
Clod Patry
Greenhorn
Joined: Nov 21, 2003
Posts: 9
|
|
when im going to my jsp: index.jsp?action=sessions im getting error such as: what is that error exactly ? and how can i fix it ? thanks in advance
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56162
|
|
It probably means that you have too many connections to the DB open. Are you sure that you are closing them? In any case, this would be better off in the JDBC forum. Moving it there. bear
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Clod Patry
Greenhorn
Joined: Nov 21, 2003
Posts: 9
|
|
|
what should i put at the end? just to be sure ?
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26154
|
|
Clod, Every time you are done with a query, you should call conn.close() for the connection object. Similarly, it is good to close the result set and statement objects.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: access
|
|
|