11

我遇到了一个障碍。我需要为本地安装的 SQL Server 2008 R2 指定端口号。到目前为止,我已经尝试使用 SqlConnectionStringBuilder 并将数据源设置为.\TESTSERVER, 1433,所有文档都应该将我连接到端口 1433 上的服务器 TESTSERVER (默认值)。

连接字符串如下所示:

{Data Source=".\TESTSERVER, 1433";Initial Catalog=AdventureWorks;User ID=testuser;Password=MYPASSWORDHERE}

但是我收到一个错误,如下所示:

建立连接 SQL 服务器时发生网络相关或特定于实例的错误。服务器未找到或无法访问。验证实例名称是否正确以及 SQL 服务器是否配置为允许远程连接。(提供者:TCP 提供者,错误:0 - 无法建立连接,因为目标机器主动拒绝了它。

在使用它验证连接字符串SqlConnectionStringBuilder.ToString()后,几乎可以得出MSDN的建议。由于某种原因,它只在数据源周围加上双引号,没有别的。但是,这可能只是调试器删除了外部引号,因为它存储在string数据类型中。我还验证了在不指定端口的情况下可以访问 SQL 服务器,并且确实如此。最后,我验证了允许服务器接受远程连接。考虑到这个 SQL Server 实例是使用默认端口在本地安装的,并且在我的开发计算机上,我无法想象为什么会出现这样的错误。

这是因为 SqlConnectionStringBuilder 用它自己的端口覆盖了我的端口吗?出于某种原因,我是否需要在防火墙上打开端口?知道这是一个完全本地安装,它不应该遇到防火墙问题。我宁愿不必手动构建连接字符串。并不是说这很困难,它只是给我的代码增加了一层复杂性,除非需要,否则我宁愿不要。

任何帮助,将不胜感激。谢谢!

编辑:

在对 SqlConnectionStringBuilder 语法进行了长时间的深入研究之后,它似乎通过将 then 传递给用引号括起来的连接字符串来处理无效参数。我想这是因为它破坏了连接字符串。我的问题仍然存在:有没有办法通过 SqlConnectionStringBuilder 传递端口,还是我必须自己构建它?

4

4 回答 4

10

TL;博士

删除数据源字符串中端口号之前的空格:

{Data Source=".\TESTSERVER, 1433";Initial Catalog=AdventureWorks;User ID=testuser;Password=MYPASSWORDHERE}

让它看起来像这样

{Data Source=".\TESTSERVER,1433";Initial Catalog=AdventureWorks;User ID=testuser;Password=MYPASSWORDHERE}

长答案

在玩了一会儿之后,您可以通过删除逗号和端口号之间的空格来省略额外的引号:

var stringBuilder = new SqlConnectionStringBuilder();
var sqlCommand = "select TOP 100 * from MyTable;";

stringBuilder.IntegratedSecurity = true;
stringBuilder.InitialCatalog = "MyCatalog";
stringBuilder.DataSource = @"myServer\InstanceName,1433";

// This will give the connection string:
// "Data Source=myServer\\InstanceName,1433;Initial Catalog=MyCatalog;Integrated Security=True"
using (var connection = new SqlConnection(stringBuilder.ToString()))
using (var command = new SqlCommand(sqlCommand, connection))
using (var adapter = new SqlDataAdapter(command))
{
    var table = new DataTable();
    connection.Open();
    adapter.Fill(table);
}

不幸的是,这仍然会导致与您提供的错误消息相同的错误消息。因此,我深入研究了网络通信并发现,如果您不传递端口号,它首先会尝试与端口 1433 建立 tcp 连接(像往常一样),但它将保持未连接状态。然后,它尝试与端口 1434 建立 udp 连接,并从它们那里接收一个动态端口号,该端口号将用于数据将流向的第二个 tcp 连接。

通过使用 Sysinternals 的 Process Monitor,您可以查看此过程:

// The first try by using TCP port 1433
WindowsFormsApplication.vshost.exe  5480    TCP Reconnect   MyMachine:53202 -> SqlServerInstance:1433   SUCCESS
WindowsFormsApplication.vshost.exe  5480    TCP Reconnect   MyMachine:53202 -> SqlServerInstance:1433   SUCCESS
// The second try by using UDP port 1434
WindowsFormsApplication.vshost.exe  7664    UDP Send    MyMachine:50245 -> SqlServerInstance:1434   SUCCESS
WindowsFormsApplication.vshost.exe  7664    UDP Receive MyMachine:50245 -> SqlServerInstance:1434   SUCCESS
// Taking informations out of UDP connection to connect to dynamic assigned port
WindowsFormsApplication.vshost.exe  7664    TCP Connect MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Send    MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Send    MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Send    MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Send    MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Send    MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
WindowsFormsApplication.vshost.exe  7664    TCP Receive MyMachine:53209 -> SqlServerInstance:58904  SUCCESS
// Closing of dynamic assigned port
WindowsFormsApplication.vshost.exe  7664    TCP Disconnect  MyMachine:53209 -> SqlServerInstance:58904  SUCCESS

通过使用显式端口号,我只会看到给定的第一行,然后抛出异常。因此,定义默认端口号会导致另一种行为,而不是不定义任何端口号!

尽管如此,如果您需要为您的服务器定义一个明确的端口号,只需避免逗号后面的空格,您的连接字符串就会看起来很漂亮。

于 2012-11-05T09:24:12.463 回答
0

对我来说,它的工作是这样的:

//read instance
builder.DataSource.Split(new Char[] { ',' })[0]
//read port number
builder.DataSource.Split(new Char[] { ',' })[1]

//write
builder.DataSource = builder.DataSource.Split(new Char[] { ',' })[0] + ",1234";
于 2014-07-24T14:34:40.497 回答
0

MSDN SqlConnection.ConnectionString 属性

要连接的 SQL Server 实例的名称或网络地址。可以在服务器名称后指定端口号:

示例:MyDataSource,1433

于 2012-11-05T08:27:04.473 回答
0

看看http://www.connectionstrings.com/sql-server-2008

SQL Server 2008 连接字符串不包含围绕服务器索引名称的额外引号。您的连接字符串应该是

Data Source=.\TESTSERVER, 1433;Initial Catalog=AdventureWorks;User ID=testuser;Password=MYPASSWORDHERE
于 2012-07-02T08:27:31.973 回答