本文实例讲述了C#查询SqlServer数据库并返回单个值的方法。分享给大家供大家参考。具体实现方法如下:
static public string GetSqlAsString(string sqlText, SqlParameter[] sqlParameters, string databaseConnectionString) {
string result = "";
SqlDataReader reader;
SqlConnection connection = new SqlConnection(databaseConnectionString);
using (connection) {
SqlCommand sqlcommand = connection.CreateCommand();
sqlcommand.CommandText = sqlText;
if (sqlParameters != null) {
sqlcommand.Parameters.AddRange(sqlParameters);
}
connection.Open();
reader = sqlcommand.ExecuteReader();
if (reader != null)
if (reader.Read()) {
result = reader.GetString(0);
}
}
return result;
}
希望本文所述对大家的C#程序设计有所帮助。
您可能感兴趣的文章:c#连接sqlserver数据库、插入数据、从数据库获取时间示例c#操作sqlserver数据库的简单示例C#如何实现对sql server数据库的增删改查C#编程实现连接SQL SERVER数据库实例详解C#获取所有SQL Server数据库名称的方法C#实现异步连接Sql Server数据库的方法c#几种数据库的大数据批量插入(SqlServer、Oracle、SQLite和MySql)C#访问SQL Server数据库的实现方法C#实现Excel表数据导入Sql Server数据库中的方法C#连接到sql server2008数据库的实例代码C#实现连接SQL Server2012数据库并执行SQL语句的方法