运行时出现SQL异常
本文关键字:异常 SQL 运行时 | 更新日期: 2023-09-27 18:22:11
我在运行时得到了一个SqlException
。
<add name="ConnStr"
providerName="System.Data.SqlClient"
connectionString="Password=123;Persist Security Info=True;User ID=sa;Initial Catalog=test;Data Source=test" />
当我试图在运行时连接时,我得到了这个错误
请帮我修复
像一样尝试
<add name="connstr"
connectionString="Data Source=test;Initial catalog=test;User=sa;Password=123"
providerName="System.Data.SqlClient" />`
正如我所看到的,您将初始目录和数据源都作为测试。你确定你的服务器名称和数据库名称是测试的吗?请在下面找到区别。
-
Data Source
是您想要与之交互的服务器的名称,如果它是本地服务器,您可以加上句点(.),这样该服务器的所有数据库都可以使用。如果它在其他服务器上放置了服务器的IP地址或名称,请确保它通过网络连接。 -
Initial catalog
是您要使用的数据库的名称,该数据库在您在Data Source
属性中提到的服务器上可用。
例如:
<add name="SampleConnectionString"
connectionString="Data Source=test;Initial catalog=test;User=sa;Password=123"
providerName="System.Data.SqlClient" />`
查看指向.
的数据源,这意味着我要连接到本地SQL Server。Initial Catalog
是SampleDataBase
,它是我的本地SQL Server实例上的数据库。
如果它能解决问题,请告诉我。