如何使用 Visual C# 连接远程 SQL Server 数据库?

发布于 2024-09-05 20:33:51 字数 87 浏览 4 评论 0原文

我正在创建一个 Windows 窗体应用程序,而我的 SQL Server 数据库位于远程服务器上。如何使用 Visual C# 和 ADO.NET 连接到它?

I am creating a Windows forms application and my SQL Server database is on a remote server. How can I connect to it using Visual C# and ADO.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

蓝礼 2024-09-12 20:33:51

您需要研究 .NET 中的 SqlConnectionSqlCommand 以及可能的 SqlDataReaderSqlDataAdapter 组件(请参阅 MSDN 在线文档)。

完成后,您需要定义您的连接字符串 - 检查该站点链接以获取大量连接选择和解释字符串。

然后你基本上使用以下方式连接:

using(SqlConnection conn = new SqlConnection('your connection string here'))
{
    conn.Open();
    // do stuff
    conn.Close();
}

并且你可以通过各种方式做一些事情,例如通过填充数据集、读取值等。

阅读MSDN ADO.NET 概述 开始使用!或者通过 Google 搜索“ADO.NET 教程” - 您会发现大量链接。

You need to investigate the SqlConnection, SqlCommand and possible SqlDataReader and SqlDataAdapter components in .NET (see the MSDN online docs).

Once you have that, you need to define your connection string - check that site link for a huge selection and explanation of connection strings.

Then you basically connect using:

using(SqlConnection conn = new SqlConnection('your connection string here'))
{
    conn.Open();
    // do stuff
    conn.Close();
}

and you can do stuff in various ways, e.g. by filling data sets, reading values etc.

Read the MSDN ADO.NET Overview to get started! Or Google for "ADO.NET tutorial" - you'll find tons of links.

清风夜微凉 2024-09-12 20:33:51

在 MS SQL Server 看来,SQL Server 位于何处并没有什么区别。您所需要的只是确保您可以通过 IP 和端口号访问该服务器。

In the eye of MS SQL Server it is no difference where your SQL Server is located. All you need is to make sure you have access that server in terms of IP and Port number.

云淡月浅 2024-09-12 20:33:51

使用以下代码创建必要的连接对象。

public bool BeginTransaction(string strServerName) {
    try
    {
        bool bRet = OpenConnection(strServerName);
        if (bRet)
        {
            m_objTransaction = m_conn.BeginTransaction();
            m_dtAdapter.SelectCommand.Connection = m_conn;
            return true;
        }
    }
    catch (Exception ex)
    {
        return false;
    }
    return false; 
}

public bool OpenConnection(string strServerName) {
    try
    {
        m_connStr = string.Empty;
        m_connStr = string.Format("Data Source=;Initial Catalog=;User Id=sa;Password=;"); //write your credentials here with DB name and server
        m_conn = new SqlConnection(m_connStr);
        m_conn.Open();

        m_dtAdapter = new SqlDataAdapter();

        if (m_conn != null)
        {
            m_dtAdapter.SelectCommand = new SqlCommand();
        }
    }
    catch (SqlException ex)
    {
        return false;
    }
    catch (Exception ex)
    {
        return false;
    }
    return true; 
}

Use the below code to create the connection objects necessary.

public bool BeginTransaction(string strServerName) {
    try
    {
        bool bRet = OpenConnection(strServerName);
        if (bRet)
        {
            m_objTransaction = m_conn.BeginTransaction();
            m_dtAdapter.SelectCommand.Connection = m_conn;
            return true;
        }
    }
    catch (Exception ex)
    {
        return false;
    }
    return false; 
}

public bool OpenConnection(string strServerName) {
    try
    {
        m_connStr = string.Empty;
        m_connStr = string.Format("Data Source=;Initial Catalog=;User Id=sa;Password=;"); //write your credentials here with DB name and server
        m_conn = new SqlConnection(m_connStr);
        m_conn.Open();

        m_dtAdapter = new SqlDataAdapter();

        if (m_conn != null)
        {
            m_dtAdapter.SelectCommand = new SqlCommand();
        }
    }
    catch (SqlException ex)
    {
        return false;
    }
    catch (Exception ex)
    {
        return false;
    }
    return true; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文