Example usage for org.hibernate SQLQuery list

List of usage examples for org.hibernate SQLQuery list

Introduction

In this page you can find the example usage for org.hibernate SQLQuery list.

Prototype

List<R> list();

Source Link

Document

Return the query results as a List.

Usage

From source file:com.bitranger.parknshop.common.dao.impl.PsItemDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override/*  ww w.  j  a v a  2  s . c  o m*/
public List<PsItem> findByVoteInCategory(final Integer psCategoryId, final FetchOption op) {

    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItem>>() {

            @Override
            public List<PsItem> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session
                        .createSQLQuery("select * from ps_item as P where P.id_category = ? " + "order by vote "
                                + (op.sortOption == SortOption.ASCENDING ? "asc" : "desc ") + "limit ?, ?");

                query.setInteger(0, psCategoryId).setInteger(1, op.offset).setInteger(2, op.limit);
                query.addEntity(PsItem.class);

                return query.list();
            }
        });
    } catch (RuntimeException re) {
        log.error("find by findByVoteInCategory failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsItemDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override// w  ww  . j a va 2  s.  c  o m
public List<PsItem> findByOrderId(final Integer id) {
    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItem>>() {

            @Override
            public List<PsItem> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session.createSQLQuery(
                        "select P.* from ps_item as P where P.id in (select R.id_item from r_order_item as R where R.id_order = ? ) ");

                query.setInteger(0, id);
                query.addEntity(PsItem.class);
                return query.list();
            }
        });

    } catch (RuntimeException re) {
        log.error("find by findByOrderId failed", re);
        throw re;
    }

}

From source file:com.bitranger.parknshop.common.dao.impl.PsItemDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override/* w  ww .  java2  s .  c  o m*/
public List<PsItem> findBySeller(final Integer sellerId, final FetchOption fetchOption) {
    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItem>>() {

            @Override
            public List<PsItem> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session.createSQLQuery(
                        "select P.* from ps_item as P where P.id_shop in (select S.id from ps_shop as S where S.id_seller = ? ) ");

                query.setInteger(0, sellerId);
                query.addEntity(PsItem.class);
                return query.list();
            }
        });

    } catch (RuntimeException re) {
        log.error("find by findBySeller failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsItemDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override/* w ww. ja  va  2 s  . com*/
public List<PsItem> findByShop(final Integer shopId, final FetchOption fetchOption) {
    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItem>>() {

            @Override
            public List<PsItem> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session.createSQLQuery("select * from ps_item as P where P.id_shop = ? "
                        + "order by name " + (fetchOption.sortOption == SortOption.ASCENDING ? "asc" : "desc ")
                        + "limit ?, ?");

                query.setInteger(0, shopId).setInteger(1, fetchOption.offset).setInteger(2, fetchOption.limit);
                query.addEntity(PsItem.class);

                return query.list();
            }
        });
    } catch (RuntimeException re) {
        log.error("find by findByShop failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsItemDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override//  w w w  .j  a v a 2s  .c o m
public List<PsItem> findByCountPurchase(final FetchOption op) {
    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItem>>() {

            @Override
            public List<PsItem> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session.createSQLQuery("select * from ps_item " + "order by count_purchase "
                        + (op.sortOption == SortOption.ASCENDING ? "asc" : "desc ") + "limit ?, ?");

                query.setInteger(0, op.offset).setInteger(1, op.limit);
                query.addEntity(PsItem.class);

                return query.list();
            }
        });
    } catch (RuntimeException re) {
        log.error("find by findByCountPurchase failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsItemDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override//from w  ww . j  av  a 2  s.  c  om
public List<PsItem> findByCountFavourite(final FetchOption op) {
    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItem>>() {

            @Override
            public List<PsItem> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session.createSQLQuery(" select * from ps_item " + " order by count_favourite "
                        + (op.sortOption == SortOption.ASCENDING ? " asc " : " desc ") + " limit ?, ?");

                query.setInteger(0, op.offset).setInteger(1, op.limit);
                query.addEntity(PsItem.class);

                return query.list();
            }
        });
    } catch (RuntimeException re) {
        log.error("find by findByCountFavourite failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsItemInfoDAO.java

License:Open Source License

@Override
@SuppressWarnings({ "unchecked" })
public List<PsItemInfo> findByItemId(final java.lang.Integer id) {
    try {//from  ww  w  . j a v a  2s.  c o m
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsItemInfo>>() {

            @Override
            public List<PsItemInfo> doInHibernate(Session session) throws HibernateException, SQLException {
                SQLQuery query = session.createSQLQuery("select * from ps_item_info where id_item = ? ");

                query.setInteger(0, id);
                query.addEntity(PsItemInfo.class);

                return query.list();
            }
        });
    } catch (RuntimeException re) {
        log.error("find by findByItemId failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsRecipientDAO.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override//from w  w  w  . ja  v  a  2 s  .c o m
public List<PsRecipient> findByCustomId(final Integer id) {
    log.debug("findByCustomerId: " + id);
    try {
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsRecipient>>() {

            @Override
            public List<PsRecipient> doInHibernate(Session arg0) throws HibernateException, SQLException {
                SQLQuery query = arg0.createSQLQuery("select * from ps_recipient as P where P.id_customer = ?");
                query.setInteger(0, id);
                query.addEntity(PsRecipient.class);
                return query.list();

            }

        });
    } catch (RuntimeException re) {
        log.error("find by customerId failed", re);
        throw re;
    }
}

From source file:com.bitranger.parknshop.common.dao.impl.PsTagDAO.java

License:Open Source License

@Override
@SuppressWarnings("unchecked")
public List<PsTag> selectTopTags(final int category, final int limit) {

    return getHibernateTemplate().executeFind(new HibernateCallback<List<PsTag>>() {

        @Override//from   w w  w.java2  s.  com
        public List<PsTag> doInHibernate(Session session) throws HibernateException, SQLException {
            SQLQuery query = session.createSQLQuery(" select TG.*, sum(TG.id) as TG_C from ps_tag as TG "
                    + "      inner join r_tag_item as RTI on RTI.id_tag    = TG.id "
                    + "      inner join ps_item as IT on IT.id = RTI.id_item " + " where IT.id_category = ? "
                    + " group by TG.id " + " order by TG_C " + " limit 0, ? ");
            query.addEntity(PsTag.class);
            query.setInteger(0, category);
            query.setInteger(1, limit);
            return query.list();
        }
    });
}

From source file:com.bitranger.parknshop.seller.dao.impl.PsOrderDAO.java

License:Open Source License

@Override
@SuppressWarnings("unchecked")
public List<PsOrder> findByCustomerId(final Integer id, final Date from, final Date to) {
    log.debug("findByCustomerId: " + id);
    try {/*  w  ww.j ava2  s  .c  o m*/
        return getHibernateTemplate().executeFind(new HibernateCallback<List<PsOrder>>() {

            @Override
            public List<PsOrder> doInHibernate(Session arg0) throws HibernateException, SQLException {
                SQLQuery query = arg0.createSQLQuery(
                        "select * from ps_order as P where P.id_customer = ? and P.time_created > ? "
                                + "+ and P.time_created < ?");
                query.setInteger(0, id).setDate(1, from).setDate(2, to);
                query.addEntity(PsOrder.class);
                return query.list();

            }

        });
    } catch (RuntimeException re) {
        log.error("find by customerId failed", re);
        throw re;
    }
}