public void startTransaction(SessionScope sessionScope) throws SQLException {
DEBUG.P(this, "startTransaction(1)");
try {
txManager.begin(sessionScope);
} catch (TransactionException e) {
throw new NestedSQLException("Could not start transaction. Cause: " + e, e);
}
DEBUG.P(0, this, "startTransaction(1)");
}