A Connection represents an application-level handle that is used by a client to access the underlying physical connection. The actual physical connection associated with a Connection instance is represented by a ManagedConnection instance.
A client gets a Connection instance by using thegetConnection
method on aConnectionFactory
instance. A connection can be associated with zero or more Interaction instances.
ConnectionFactory
,Interaction
close() Initiates close of the connection handle at the application level. | |
createInteraction() Creates an Interaction associated with this Connection. | |
getLocalTransaction() Returns an LocalTransaction instance that enables a component to demarcate resource manager local transactions on the Connection. | |
getMetaData() Gets the information on the underlying EIS instance represented through an active connection. | |
getResultSetInfo() Gets the information on the ResultSet functionality supported by a connected EIS instance. |
publicInteractioncreateInteraction() throwsResourceException
ResourceException
- Failed to create an InteractionpublicLocalTransactiongetLocalTransaction() throwsResourceException
ResourceException
- Failed to return a LocalTransaction instance because of a resource adapter errorNotSupportedException
- Demarcation of Resource manager local transactions is not supported on this ConnectionLocalTransaction
publicConnectionMetaDatagetMetaData() throwsResourceException
ResourceException
- Failed to get information about the connected EIS instance. Error can be resource adapter-internal, EIS-specific or communication related.publicResultSetInfogetResultSetInfo() throwsResourceException
ResourceException
- Failed to get ResultSet related informationNotSupportedException
- ResultSet functionality is not supportedpublic voidclose() throwsResourceException
ResourceException
- Exception thrown if close on a connection handle fails.Any invalid connection close invocation--example, calling close on a connection handle that is already closed--should also throw this exception.