Fusion Middleware Control Help for WebLogic Server

Previous Next Open TOC in new window
Content starts here

Create a JDBC UCP Data Source: Data Source Properties

Configuration Options     

Use this page to create a UCP data source. A UCP data source is an object bound to the JNDI tree that provides database connectivity through a pool of UCP connections. Applications can look up a data source on the JNDI tree and then reserve a database connection from a data source.

Configuration Options

Name Description
Data Source Name

A unique name that identifies this data source in the WebLogic domain.

MBean Attribute (Does not apply to application modules) :
JDBCDataSourceBean.Name

Changes take effect after you redeploy the module or restart the server.

Type

The type of data source: Generic, GridLink, UCP, Proxy, or Multi Data Source.

Database Type

Select the database management system of your database.

Driver Class Name

The full package name of JDBC driver class used to create the physical database connections in the connection pool in the data source.

For example: oracle.jdbc.OracleDriver

The driver must be the name of a class that implements the java.sql.Driver interface. Check the driver documentation to find the full pathname.

Note that the driver class must be in the classpath of any server to which the data source is deployed.

MBean Attribute (Does not apply to application modules) :
JDBCDriverParamsBean.DriverName

Changes take effect after you redeploy the module or restart the server.

JNDI Name

The JNDI path to where this data source is bound. By default, the JNDI name is the name of the data source.

To specify multiple JNDI names for the data source, enter each JNDI name on a separate line.

Applications that look up the JNDI path will get a javax.sql.DataSource instance that corresponds to this data source.

MBean Attribute (Does not apply to application modules) :
JDBCDataSourceParamsBean.JNDINames

Changes take effect after you redeploy the module or restart the server.


Back to Top