3
votes
6answers
57 views
Classic ASP - using one connection for many queries?
Consider a classic ASP site running on IIS6 with a dedicated SQL Server 2008 backend...
Scenario 1:
Open Connection
Do 15 queries, updates etc all through the ASP-page
Close Conn …
0
votes
0answers
8 views
COM+ Connection Pooling Doesn’t Appear to be working on SQL Server 2005 Cluster
We have a COM+ Data Layer that utilized Connection Pooling. Its deployed to 3 clusters, 2 SQL Server 2000 and 1 SQL Server 2005 environment.
We noticed today that our monitoring …
0
votes
1answer
221 views
Clear the HttpWebRequest UnsafeAuthenticatedConnectionSharing Pool
Hi,
is it possible to clear the pool of the current processes' UnsafeAuthenticatedConnectionSharing pool, i.e. close all authenticated pooled connections?
3
votes
5answers
474 views
Comparison of JDBC Connection pools
Does anyone have any information comparing performance characteristics of different ConnectionPool implementations?
Background: I have an application that runs db updates in back …
1
vote
3answers
61 views
HTTPS requests and multi-threading
Is Java's URL class a thread-safe, in particular URL.openConnection()?
In my application, I make tens of concurrent HTTPS connections a second to the same URL, and I would like to …
0
votes
0answers
26 views
SQL Server pooling Issue
Hi Friends
I have written a web application in which I have not allowed connection pooling for this application. I have written sample code as shown below which gets record from …
1
vote
6answers
87 views
Creating a database connection pool.
Need information on creating a connection pool to the database (irrespective of the database) , and how efficient they are? What are the conditions where they can enhance performan …
1
vote
3answers
78 views
hibernate c3p0 broken pipe
Hi,
I'm using hibernate 3 with c3p0 for a program which constantly extracts data from some source and writes it to a database.
Now the problem is, that the database might become u …
1
vote
2answers
160 views
Tomcat JNDI Connection Pool docs - Random Connection Closed Exceptions
I found this in the Tomcat documentation here
What I don't understand is why they close all the JDBC objects twice - once in the try{} block and once in the finally{} block. Why …
1
vote
1answer
58 views
what is the easiest way to have multiple db connections when using linq
Optimally I would like linq to use X database connections instead of 1 to speed things up.
The only way now is to open X connections, and create X databasecontexts, and associate …
0
votes
1answer
29 views
SharePoint use of windows identity and connection pooling
When a user accesses a SharePoint site he is identified by his wndows identity.
I was wondering which identity is used to access the database. Is it the identity of the user or do …
1
vote
2answers
103 views
How do I decide the number of connections required in connection pooling?
I am using hibernate 3.2.2 in my application. For connection pooling, we are using c3p0 0.9.1.
I am using Generic DAO Pattern and Open Session in View pattern to do database ope …
8
votes
5answers
3k views
Connection pooling options with JDBC: DBCP vs C3P0
What is the best connection pooling library available for Java/JDBC?
I'm considering the 2 main candidates (free / open-source):
Apache DBCB - http://commons.apache.org/dbcp/
C …
2
votes
1answer
123 views
XAConnection performance in Oracle (10g)
In our project, we use the Oracle XA Connection pool.
Only a small subset of the queries(transactions) are distributed.
Rest are quite straightforward single database modification …
1
vote
1answer
19 views
Reuse NSURLConnection objects?
I've got an app that will be doing a fair amount of communication with a server over HTTP, and these connections may be overlapping. I'm planning to load the data asynchronously. …
