bIsCachedSession = false;
bIsAdminSession = true;
}
public void connect(String sNickName, String sPassword) throws StorageException {
if (oCon!=null || oSes!=null) throw new StorageException("Already connected");
sTbl = getClass().getName();
if (useJDBC()) {
try {
oCon = DAO.getConnection(sTbl);
oCon.setAutoCommit(false);
} catch (SQLException sqle) {
throw new StorageException(sqle.getMessage(), sqle);
}
}
if (useAtril()) {
oSes = SessionCache.getSession(getContext().getRequest().getSession().getId());
if (null!=oSes) {