迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在 C# 上连接到 SQL 数据库

作者:迹忆客 最近更新:2024/02/01 浏览次数:

本教程将演示如何使用 SqlConnection 对象连接到 C# 上的 SQL 数据库。


使用 SqlConnection 对象连接到 C# 上的 SQL 数据库

SqlConnection 类是一个对象,表示与传递的连接字符串指定的 SQL Server 数据库的连接。它包含在命名空间 System.Data.SqlClient 中。

SqlConnection connection = new SqlConnection(connectionString);

连接字符串包含有关数据源、如何连接到它以及连接配置详细信息的信息。你可以在连接字符串中包含许多不同的参数,但我们将讨论一些最常用的参数。

将连接字符串传递给 SqlConnection 对象后,你可以使用其方法管理连接。

  1. Open():打开连接。
  2. Close():关闭连接。
  3. Dispose():释放连接使用的资源。
  4. ChangeDatabase():为打开的 SqlConnection 更改当前数据库。

例子:

using System;
using System.Data.SqlClient;

namespace SQLConnection_Sample {
  class Program {
    static void Main(string[] args) {
      // The server's name that holds the database
      string DataSource = "MSI\\SQLEXPRESS";

      // The name of the database
      string InitialCatalog = "SampleDB";

      // Sets if the connection should use integrated security.
      // If this value is set to "SSPI", the user's Windows Authentication will be used
      string IntegratedSecurity = "SSPI";

      // Should the database require a specific log in
      string UserID = "";
      string Password = "";

      string connectionString = "Data Source =" + DataSource +
                                "; Initial Catalog =" + InitialCatalog +
                                "; Integrated Security=" + IntegratedSecurity
          //+ "; User ID=" + UserID
          //+ "; Password=" + Password
          ;

      try {
        SqlConnection connection = new SqlConnection(connectionString);
        connection.Open();
        Console.WriteLine("The database has been opened!");
        Console.WriteLine("Connection State: " + connection.State.ToString());

        connection.Close();
        Console.WriteLine("The database has been closed!");

        connection.Dispose();
        Console.WriteLine("The database connection has been disposed!");
        Console.WriteLine("Connection State: " + connection.State.ToString());
      } catch (Exception ex) {
        Console.WriteLine("There's an error connecting to the database!\n" + ex.Message);
      }

      Console.ReadLine();
    }
  }
}

在上面的示例中,我们首先通过输入服务器、数据库名称和集成的安全参数来创建连接字符串。将其传递给 SqlConnection 对象后,我们通过打开、关闭和最后释放连接来演示不同的状态。

所有这些都打印在控制台中。

输出:

The database has been opened!
Connection State: Open
The database has been closed!
The database connection has been disposed!
Connection State: Closed

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 C# 中复制一个对象

发布时间:2024/02/01 浏览次数:120 分类:编程语言

有两种主要方法可用于在 C# 中创建对象的单独副本,MemberWiseClone()函数和参数化构造函数方法。在 C# 中使用 MemberWiseClone() 方法复制对象

在 C# 中选择查询数据库

发布时间:2024/02/01 浏览次数:160 分类:编程语言

关于在 C# 中使用 SELECT 查询设置数据库连接和检索记录的完整编程教程。本文将指导你建立与 C# 应用程序的数据库连接,并使用数据库中的 SELECT 查询从不同的表中获取数据。

在 C# 中使用对象发送器

发布时间:2024/02/01 浏览次数:164 分类:编程语言

在本文中,我们将了解什么是 Object Sender 以及如何在 C# 编程中使用它。本文将讨论什么是对象发送者以及如何在 C# 中使用它。C# 中的对象发送器概述

C# 中的 get 和 set

发布时间:2024/02/01 浏览次数:111 分类:编程语言

get 和 set 访问器用于将数据输入和输出到 C# 中的私有字段中。在本教程中,我们将在 C# 中介绍 get 和 set。

C# 中的字段与属性

发布时间:2024/02/01 浏览次数:164 分类:编程语言

本教程解释了 C# 中字段和属性之间的区别以及何时应该使用它们 本教程将解释 C# 类中字段和属性之间的区别。为了更好地说明这一点,你必须首先了解以下概念。

在 C# 中获取组合框的选定值

发布时间:2024/01/20 浏览次数:156 分类:编程语言

本教程展示了如何在 C# 中获取 ComboBox 的选定值。在本教程中,你将学习在 C# 中获取 ComboBox 的选定文本和值的不同方法。获取 ComboBox 控件的选定值的最常用方法是使用 C# 在按钮单击事件中获取

在 C# 中创建一个 UDP 服务器

发布时间:2024/01/20 浏览次数:161 分类:编程语言

在本文中,我们将学习如何在 C# 中创建 UDP 服务器。本文将展示如何在 C# 中创建一个简单的 UDP 服务器。在 C# 中创建一个 UDP 服务器

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便