Beispiel #1
0
        public int ExcuteSQL(string QueryName)
        {
            QueryObject query = GetQueryObject(QueryName);

            if (query == null)
            {
                throw new RFException("查询对象[" + QueryName + "]不存在");
            }
            return(Bss_Helper.ExcuteSQL(query.Sql));
        }