Package tigase.db

Examples of tigase.db.TigaseDBException


        update_pass_plain_pw_sp.setString(1, JIDUtils.getNodeID(user));
        update_pass_plain_pw_sp.setString(2, password);
        update_pass_plain_pw_sp.execute();
      }
    } catch (SQLException e) {
      throw new TigaseDBException("Problem accessing repository.", e);
    }
  }
View Full Code Here


      synchronized (remove_user_sp) {
        remove_user_sp.setString(1, JIDUtils.getNodeID(user));
        remove_user_sp.execute();
      }
    } catch (SQLException e) {
      throw new TigaseDBException("Problem accessing repository.", e);
    }
  }
View Full Code Here

TOP

Related Classes of tigase.db.TigaseDBException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.