Package com.odb.core.dao.rowmappers

Examples of com.odb.core.dao.rowmappers.SubscriberInfoResultSetExtractor


  public SubscriberInfo subscriberLogin(String username, String password) throws SQLException {
    String sql = "SELECT * FROM ODB_SUBSCRIBER_INFO WHERE SUBSCRIBER_NAME=:subscriberName AND SUBSCRIBER_PASSWORD=:subscriberPassword";
    Map<String, String> paramMap = new HashMap<String, String>();
    paramMap.put("subscriberName", username);
    paramMap.put("subscriberPassword", password);
    return jdbcTemp.query(sql, paramMap, new SubscriberInfoResultSetExtractor());
  }
View Full Code Here

TOP

Related Classes of com.odb.core.dao.rowmappers.SubscriberInfoResultSetExtractor

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.