The connection-leaks tag has no wiki summary.
0
votes
1answer
259 views
Android emulator failing to install any apk file and showing android.app.ServiceConnectionLeaked
I am getting following error when trying to run any android applications in emulator with Android API 4.2(17) in eclipse ADT .Earlier my apps were running fine,but this problem started after ...
0
votes
1answer
130 views
My Spring application leaks database connections whereas I use the default Roo configuration
I am encountering an serious issue with my application. It leaks database connections whereas I use the default Spring Roo datasource configuration as follows:
<bean ...
0
votes
0answers
117 views
Usage CursorLoader without ContentProvider and avoiding database leaks
I have implemented the class found in this question:
Usage CursorLoader without ContentProvider
It is a means of using the LoaderManager and CursorLoader without a content resolver. I am using it to ...
1
vote
3answers
309 views
Play Framework 2.0.4 and BoneCP - so how to avoid connections leak?
There is just one place in my app, that uses connections.
It looks something like this:
Connection conn = Db.getConnection();
try
{
// do some job
}
finally
{
conn.close();
}
So, connection ...
0
votes
1answer
678 views
Releasing connections when using PoolingClientConnectionManager?
I'm using an Apache DefaultHttpClient with a PoolingClientConnectionManager and BasicResponseHandler. These are shared between different threads, and each thread creates its own HttpRequestBase ...
0
votes
1answer
112 views
Subsonic 3.0.0.4 leaking SQL connections?
I've been using Subsonic 3.0.0.4 (ActiveRecord approach) for a while, and I recently coded a small page that basically retrieves about 500 records for a given year, and then i just loop through each ...
10
votes
5answers
572 views
Why doesn't this code close JDBC connections? (Java 7 Autocloseable unexpected behavior)
Using Java 7u5, with the try-with-resources construct, the following code appears to leak jdbc connections:
try (Connection connection = ..; PreparedStatement stmt = ..) {
stmt.setString(..);
...
4
votes
3answers
8k views
java.net.SocketException: No buffer space available (maximum connections reached?): JVM_Bind
Tomcat is running a webapp under Windows. After a few days (under very low load), the exception mentioned in the title starts to appear in the logs, no new connections can be established from that ...
0
votes
2answers
237 views
Does this cause a JDBC connection leak?
I'm getting this SQL exception:
16043 10.8.38.30> 2012-03-06 14:21:00,870 | INFO | SubThread-10 | DatabaseSender: Executing SQL Statement...; SQL Statement = select ERRORCODE from ERR_MASTER ...
0
votes
2answers
258 views
Compare two functions call graph on visual-studio 2010
In my situation, I would like to find out all the functions containing this function call
DBase.CreateCommand();
But not include the following call
DBase.CloseCommand(cmd);
In that function.
...
7
votes
1answer
256 views
Glassfish database connection leak caused by jms exception
I'm using Glassfish v2.1.1, MySQL 5.1 and ActiveMQ 5.4.2 incl. its resource adapter.
If the ActiveMQ resource adapter throws an exception when participating in a XATransaction including both a ...
3
votes
4answers
2k views
Java, ResultSet.close(), PreparedStatement.close() — what for?
In my web-application, i make extensive use of a database.
I have an abstract servlet, from which all the servlets that need a database connection, inherit. That abstract servlet creates a database ...
0
votes
1answer
384 views
Can i say this is a connection leak?
Web Server Environment : Windows 2008 R2
Database Server Environment : SQL Server 2008
Background : I want to use sql profiler to trace which connection cause connection leak.
SQL server Profiler ...
2
votes
4answers
8k views
How to check the Database Connection leakage in Java EE application?
Is there any way to check the connection leakage in a Java EE application?
The application is running on my local machine. It uses a MySQL database and a user enters his details into this database.
...
1
vote
1answer
365 views
How to debug leaking connections in an ASP.NET 2.0 Web Services application?
I have an app, which is a bunch of c# web services sitting on top of ASP.NET 2.0 in IIS7 on Win2k3. Following the last release, we keep getting connection timeouts. A quick investigation using ...
7
votes
6answers
8k views
How to detect SqlServer connection leaks in a ASP.net applications?
I'm currently doing some GUI testing on a ASP.net 2.0 application.
The RDBMS is SQL Server 2005. The host is Win Server 2003 / IIS 6.0.
I do not have the source code of the application because it ...