gpt4 book ai didi

c# - 对象转字符串出错

转载 作者:太空宇宙 更新时间:2023-11-03 22:08:14 25 4
gpt4 key购买 nike

<分区>

我的代码是这样的:

SqlConnection scn = new SqlConnection(ClsPublic.GetConnectionString());
SqlCommand scm = new SqlCommand("SELECT Name FROM Table WHERE (Blogger = @Blogger)", scn);
scm.Parameters.AddWithValue("@Blogger", lblBloger.Text);
scn.Open();
MyLabel.Text = scm.ExecuteScalar().ToString();
scn.Close();

在这一行中:

lblLastNo.Text = scm.ExecuteScalar().ToString();

有这个错误:

Object reference not set to an instance of an object.

或者当我使用 if 语句时,显示相同的错误

object Blogger= "";
if (Blogger.ToString() != string.Empty)
{
....
}

在下面的代码中再次显示相同的错误。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com