首页 > 代码库 > SQLite查询系统参数
SQLite查询系统参数
public static int GetParameterValue(string parameterName) { var ds = GetDataSet(connString, string.Format("select * from SystemParameter where ParameterName=‘{0}‘", parameterName)); if (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0) { int returnValue = http://www.mamicode.com/0;"ParameterValue"]); } catch { throw new Exception("SQLite查询系统参数[" + parameterName + "]异常"); } return returnValue; } else { throw new Exception("SQLite查询系统参数[" + parameterName + "]异常"); } }
尝试用一种非常规的方式,学习,理解代码,不急功近利,切记做好一件事,做完美。不断优化,改正,修正
SQLite查询系统参数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。