检查并显示数据库中的标签

时间:2017-06-21 05:07:02

标签: c# ms-access

抱歉我的英语不好。

这是我的问题。我可以在df = pd.concat([df] * 10000, ignore_index=True) 10 loops, best of 3: 80.3 ms per loop 1 loop, best of 3: 4.58 s per loop 1 loop, best of 3: 233 ms per loop 中键入不同的用户名,并在tb_acc中显示现有用户的全名,但对于不存在的用户,则不显示字符串Label1是{{1}这里不适用?我在文本框中User not found.设置为DBNull.Value

AutoPostBack

1 个答案:

答案 0 :(得分:1)

您希望该用户存在。更改为If:

if (myReader2.Read())
{
    if (myReader2["childName"] != DBNull.Value)
    {
        Label1.Text = (myReader2["childName"].ToString()); //user full Name
    }
    else
    {
        Label1.Text = "User with no name";
    }
}
else
{
    Label1.Text = "User not found.";
}