Example #1
0
        public int DelSystemKeyWord(SphinxKeywordQuery query)
        {

            ///返回的状态
            int state = 0;
            try
            {
                dao = new SystemKeyWordDao(connectionstring);
                state = dao.DelSystemKeyWord(query);
                return state;
            }
            catch (Exception ex)
            {

                throw new Exception("SystemKeyWordMgr->DelSystemKeyWord():" + ex.Message);
            }
        }