Questions tagged [ucp]

Oracle UCP (Universal Connection Pool) for JDBC provides a connection pool implementation for caching JDBC connections.

A UCP JDBC connection pool can use any JDBC driver to create physical connections that are then maintained by the pool. The pool can be configured and provides a full set of properties that are used to optimize pool behavior based on the performance and availability requirements of an application.

In fact, UCP creates virtual connections that wrap real physical connections. When virtual connections are being returned to the pool, UCP does not close the underlying physical connection so it can be retrieved again.

94 questions
0
votes
1 answer

Disabling autoCommit for Oracle UCP on Tomcat 6

I am using Hibernate 3.3.2 and Spring 3.2.3 on Tomcat 6. I want to use a connection pool and decided to test Oracle's UCP (for Oracle 11.2.0.4). (I added edits to the end of this post because the situation changed after a few developments) I cannot…
0
votes
1 answer

How to make Oracle UCP always store several available connections

I'm creating connection manager class that would return java.sql.Connection to the customers of the class. My goal is to always have 2 available connections in pool so I wouldn't loose time for creating connections. When I return the available…
ivstas
  • 1,203
  • 1
  • 16
  • 31
0
votes
1 answer

Connecting to Oracle using UCP and DataDirect driver

I am trying to connect to a Oracle database using UCP with DataDirect JDBC driver for oracle. What is the URL tha tI need to use. I am currently using the following.
A j
  • 1,069
  • 2
  • 16
  • 29
-2
votes
2 answers

If statement is not working correctly

This is my first topic so far in this great webpage The problem is this: I'm scripting an UCP (PHP & MySQL based). I want it to show the user's status like score, money, etc. (Yeah, it's for a game) but when I click on the login button nothing…
1 2 3 4 5 6
7