在Visual Studio 2008中连接到SQL Server 2012数据库

时间:2018-11-28 04:00:26

标签: c# visual-studio-2008 visual-studio-2008-sp1

我目前正在为团队开发基于Windows CE的移动应用程序,以跟踪资产并将其存储在我们现有的数据库中。

我能够成功开发和部署该软件,但是似乎无法从Visual Studio 2008连接到我的SQL Server 2012数据库。当我尝试从Visual Studio 2017连接时,它可以正常工作。

这是我的测试代码,而不是我的真实资产跟踪程序代码,因此它没有我为资产跟踪器应用程序构建的UI。

using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace test_smart_device
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            button1.Click += new EventHandler(button_connect);
        }

        private void button_connect(object sender, EventArgs e)
        {
            string connetionString = null;
            SqlConnection cnn ;
            connetionString = "Data Source=172.16.206.20;Initial Catalog=IBusinessTest;Integrated Security=SSPI;User ID=username;Password=123456";

            cnn = new SqlConnection(connetionString);

            try
            {
                cnn.Open();
                MessageBox.Show ("Connection Open ! ");
                cnn.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show("Can not open connection ! ");
            }
        }
    }
}

当我尝试连接到数据库时,出现此错误:

error details captured by the debugger

这是当我在catch语句中放置断点时来自调试器的

1 个答案:

答案 0 :(得分:0)

有两件事向我伸出来:

  • 您的连接字符串包含Integrated Security=SSPI;,但是您也包含User ID=username;Password=123456-就是这样,是否正在使用集成安全性(即以Windows用户身份登录程序正在以该身份运行-域或在CE设备和SQL Server上使用相同的工作组凭据),还是要尝试使用SQL Server身份验证(通过指定用户ID和密码)?您不能同时使用两者。
  • 错误SQL Server does not exist or access denied表示您的连接被拒绝,但没有说明原因。如果不是凭据,则可能是连接本身。您是否已从设备检查服务器是否为remotely accessible?它们在同一本地网络上吗?如果在WiFi上使用物理设备,它是否具有与网络上其他设备进行通信的权限(某些WiFi路由器,尤其是公司路由器可以选择仅允许流量进入网关,并拒绝对本地地址的请求)。