Package org.dbwiki.user

Examples of org.dbwiki.user.UserListing


 
  /** Initialize user listing from database
   *
   */
  protected void getUserListing(Connection connection) throws SQLException {
    _users = new UserListing();
    Statement stmt = connection.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * FROM " + RelationUser);
    while (rs.next()) {
      _users.add(new User(rs.getInt(RelUserColID), rs.getString(RelUserColLogin), rs.getString(RelUserColFullName), rs.getString(RelUserColPassword)));
    }
View Full Code Here

TOP

Related Classes of org.dbwiki.user.UserListing

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.