-1

我一直在尝试使用 SQL 命令连接到在 Visual Studio Professional 中创建的本地数据库...

我正在尝试运行我的代码,但遇到以下错误,抱怨我的“ConnectionString”(参见此图)

错误是说“用户代码未处理 NullReferendException。我做错了什么?

错误

在我的一生中,我无法将此数据库连接到我的表单。

这是我在 web.config 中找到的配置设置

网络配置

任何帮助我与本地数据库建立连接将不胜感激。我一直在尝试调整我的连接两天,但仍然遇到 .ConnectionString 的问题

///////////////////////////

更新 - 10:55 8/2

将我的 conn 设置切换为: SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager. ConnectionStrings["ConnectionString"].ConnectionString);

我现在面临这个抱怨异常的错误:

在此处输入图像描述

4

1 回答 1

0

You don't have a connection string named Database1, it's named ConnectionString. Change your code to ConnectionStrings["ConnectionString"].

UPDATE: looks like the OP already fixed that.

That error tends to indicate that your SQLEXPRESS instance isn't up and running. Make sure the services are started and the server is running.

于 2013-08-02T19:34:00.413 回答