- See Also:
- Top Examples, Source Code,
ConnectionFactory
,
Interaction
public void close()
throws ResourceException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[346]Creates the Connection with the given ManagedConnection and DirContext
By Balendran M on 2003/08/14 02:38:10 Rate
private ManagedConnectionImpl mc = null;
private DirContext ctx = null;
public ConnectionImpl ( ManagedConnectionImpl mc, DirContext ctx ) {
this.mc = mc;
this.ctx = ctx;
}
public void close ( ) throws ResourceException {
ctx = null;
mc.removeConnection ( this ) ;
}
public Interaction createInteraction()
throws ResourceException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[347]Creates an Interaction associated with a ManagedConnection
By Balendran M on 2003/08/14 02:40:17 Rate
private ManagedConnectionImpl mc = null;
private DirContext ctx = null;
public ConnectionImpl ( ManagedConnectionImpl mc, DirContext ctx ) {
this.mc = mc;
this.ctx = ctx;
}
public Interaction createInteraction ( ) throws ResourceException {
InteractionImpl interaction = new InteractionImpl ( this ) ;
return interaction;
}
public LocalTransaction getLocalTransaction()
throws ResourceException
- See Also:
- NotSupportedException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public ConnectionMetaData getMetaData()
throws ResourceException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public ResultSetInfo getResultSetInfo()
throws ResourceException
- See Also:
- NotSupportedException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples