VS连接Sql Server方法

时间:2024-03-08 10:12:13

1.VS中:工具-->连接到数据库-->填写服务器名、用户名密码、数据库名等-->点击高级,拉倒最下方可看到连接字符串。

2.复制该字符串,复制到web.config文件中。

 

3.建一个类,代码如下:

 1   public class SqlDB
 2 
 3     {
 4 
 5         protected SqlConnection conn;
 6 
 7         //打开连接
 8 
 9         public bool OpenConnection()
10 
11         {
12 
13             conn = new SqlConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString);
14 
15             try
16 
17             {
18 
19                 bool result = true;
20 
21                 if (conn.State.ToString() != "Open")
22 
23                 {
24 
25                     conn.Open();
26 
27                 }
28 
29                 return result;
30 
31             }
32 
33             catch (SqlException ex)
34 
35             {
36 
37                 return false;
38 
39             }
40 
41         }
42 
43         //关闭连接
44 
45         public bool CloseConnection()
46 
47         {
48 
49             try
50 
51             {
52 
53                 conn.Close();
54 
55                 return true;
56 
57             }
58 
59             catch (Exception ex)
60 
61             {
62 
63                 return false;
64 
65             }
66 
67         }
68 
69     }