1

该语句用于检查用户是否存在于数据库中。

public boolean isExisting(int userId) {
    String sql = "{call isExistingUser(?)}";
    Session session = null;
    boolean isExisting = false;
    try {
        session = getSession();
        SQLQuery query = session.createSQLQuery(sql);
        query.setParameter(0, userId);
        List<?> list = query.list();
        isExisting = list.get(0) != null ? (Boolean) list.get(0) : false;  
    } finally {
        if (session != null)
            session.close();
    }
    return isExisting;
}

这是存储过程:

CREATE DEFINER= cbsadmin@ %PROCEDURE isExistingUser(IN userId int) BEGIN SELECT USER_ID FROM USER_LOGIN_STATUS WHERE USER_ID = userId; 结尾

4

1 回答 1

0

在 NHibernate 中使用分离条件查询存储过程是不可能的。

您只需要使用 SQL 查询。

这里

于 2012-10-03T08:37:57.617 回答