gpt4 book ai didi

c# - NullReferenceException 错误数据库数据到表 html

转载 作者:太空宇宙 更新时间:2023-11-03 10:24:03 24 4
gpt4 key购买 nike

我在调试程序后突出显示了这条语句。我不知道如何解决这个问题,有人可以帮助我吗?

string constr = ConfigurationManager.ConnectionStrings["Server=LUIGEL-PC\\SQLExpress;Database=StudentInfo;Trusted_Connection=Yes"].ConnectionString;

这条线路有问题吗?我正在连接到本地数据库。

最佳答案

在这一行中需要来自 web.config 的这个值的键名

ConfigurationManager.ConnectionStrings["Server=LUIGEL-PC\\SQLExpress;Database=StudentInfo;Trusted_Connection=Yes"].ConnectionString;

由于在 ConnectionStrings 节点中未找到任何键名 Server=LUIGEL-PC\\SQLExpress;Database=StudentInfo;Trusted_Connection=Yes,因此抛出 NullReferenceException

这样试试

web.config

<connectionStrings>
<add
name="myConnectionString"
connectionString="Data Source=serverName;Initial
Catalog=Northwind;Persist Security Info=True;User
ID=userName;Password=password"
providerName="System.Data.SqlClient"/>
</connectionStrings>

C#

string connStr = ConfigurationManager.ConnectionStrings["myConnectionString"].ConnectionString;

关于c# - NullReferenceException 错误数据库数据到表 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32292501/

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