SQLite查询系统参数
Posted jackchencnblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 = 0; try { returnValue = Convert.ToInt32(ds.Tables[0].Rows[0]["ParameterValue"]); } catch { throw new Exception("SQLite查询系统参数[" + parameterName + "]异常"); } return returnValue; } else { throw new Exception("SQLite查询系统参数[" + parameterName + "]异常"); } }
尝试用一种非常规的方式,学习,理解代码,不急功近利,切记做好一件事,做完美。不断优化,改正,修正
以上是关于SQLite查询系统参数的主要内容,如果未能解决你的问题,请参考以下文章
java.lang.NullPointerException: Attempt to invoke virtual method ‘int android.database.sqlite异常(代码片段
当我从用户获取数据并将其保存到 SQLite 数据库中时,我应该怎么做才能使列表视图在片段中工作
Android 逆向使用 DB Browser 查看并修改 SQLite 数据库 ( 从 Android 应用数据目录中拷贝数据库文件 | 使用 DB Browser 工具查看数据块文件 )(代码片段
Android 逆向使用 DB Browser 查看并修改 SQLite 数据库 ( 从 Android 应用数据目录中拷贝数据库文件 | 使用 DB Browser 工具查看数据块文件 )(代码片段