Whenever I change connection pool parameters (url, id, pwd etc) I try to deploy the new connection pool in weblogic using the Control tab. I do a shutdown and start which ...
I am configuring a WebLogic app server. I am unclear about what is an instance connection and what is a service connection.
Also, in my SQL Developer, when I make a ...
We are currently moving from Weblogic 8 and Oracle 8 to Weblogic 10 and Oracle 10 as a big upgrade project.
It appears that for most applications, they are running faster, better ...
I am getting following error in my managed server console on oracle soa server(11g).
--------------------
<Apr 14, 2011 10:51:37 AM SGT> <Warning> <JDBC> <BEA-001153> <Forcibly releasing inactive connection "weblogic.jdbc.wrapper.PoolConnection_oracle_jdbc_driver_T4CConnection@14267" back into the connect
ion ...
i have a connection leak, which is captured by BEA WebLogic fortunately. However, after reading through some literature, i am still trying to find out which part of the stack trace ...
We are using Weblogic datasource to fetch connections. We execute a stored procedure on the connection. The stored procedure does a fetch on a Synonym which is a DB Link to ...
When making a connection from Java to Adobe LiveCycle ES 2.5, the Setting connection properties page lists the default connection properties you should use depending on your server type.
For ...
When using wlst with a WebLogic 10.3.5.0 release I am puzzled by the following situation and hoping for an answer.
Given a standard wlst command to connect to a server
Hi All, I am looking for creating singleton class for connection with DB. We are using weblogic connection pool. we have jar for 1.8.1 framework. We need to use FWDBManager class instance. We have connection pool name to access that. Anyone can help me how to create singleton class to access database? Thanks
I'm trying to understand the difference between two ways to get a connection from a Weblogic 6.0 connection pool. I've come across two different ways that we can get a connection from a pool (after it's been created thru the console). 1. Have a connection pool manager with a getConnection method that uses the following code: Connection conn = null; Driver ...
Hello, I am new to database connection pooling. I am using weblogic server, Java 1.6, MySql database. I have done connection pooling in weblogic server. The problem arise when I try to run select query I cannot fetch data in ResultSet. For insert it works fine... import java.io.Serializable; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import ...