public interface ISqlConnection
comes from the container's internal connection pool
, so you have
to very diligently release
the connection (typically in a 'finally' block) when you are done
with the connection otherwise the container may starve out of connection. ISqlTx
that is executed by a call to
ISqlDatabase.query(ISqlTx)
.Modifier and Type | Method and Description |
---|---|
java.sql.Connection |
getRawConnection()
This method gives access to the raw connection, aka to actual
Connection that this
instance models. |
void |
release()
This method must be called in order to give the connection back to the pool.
|