Package com.odb.core.dao.rowmappers

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


   *
   * @see com.odb.core.dao.ODBDAO#getViewConfigurationList()
   */
  public List<ViewConfiguration> getViewConfigurationList() throws SQLException {
    String sql = "SELECT * FROM ODB_VIEW_CONFIG WHERE IS_DESPLAYED=1";
    List<ViewConfiguration> vcfgList = jdbcTemp.getJdbcOperations().query(sql, new ViewConfigurationRowMapper());
    return vcfgList;
  }
View Full Code Here

TOP

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

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.