c#中连接本地的sqlserver数据库

(1)界面显示

c#中连接本地的sqlserver数据库_第1张图片


(2)这个数据库我是sa的用户名以及密码为root的方式登录的数据库。

数据库的名称为xsgl

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

namespace WindowsFormsApplication6
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try {
                SqlConnection myConnection = new SqlConnection();
               myConnection.ConnectionString = "server=localhost;uid=sa;pwd=root;database=xsgl";
                myConnection.Open();
                MessageBox.Show("已正确建立连接");
                myConnection.Close();
            
            }
            catch(SqlException ee) {

                MessageBox.Show(ee.Message);
            
            }
        }
    }
}



你可能感兴趣的:(c#)