Oracle8i Application Developer's Guide - Advanced Queuing
Release 2 (8.1.6)

A76938-01

Library

Product

Contents

Index

Prev Up Next

JMS Administrative Interface: Basic Operations, 8 of 30


Get a Topic Connection Factory with JDBC URL

Figure 13-6 Use Case Diagram: Get a Topic Connection Factory with JDBC URL



To refer to the table of all basic operations having to do with the Operational Interface see:

  • "Use Case Model: Operational Interface -- Basic Operations"

 

Purpose

Get a Topic Connection Factory with a JDBC URL

Usage Notes

getTopicConnectionFactory is a static method.

Syntax

See Java (JDBC): Oracle8i Supplied Java Packages Reference, oracle.jms, AQjmsFactory.getTopicConnectionFactory

Example

 String      url          = "jdbc:oracle:oci8:internal/oracle"
 Properties  info         = new Properties();
 TopicConnectionFactory   tc_fact;

 info.put("internal_logon", "sysdba");
 tc_fact = AQjmsFactory.getTopicConnectionFactory(url, info);


Prev Up Next
Oracle
Copyright © 1999 Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index